From c14c48c11d9bfd38653b596c06ac3c5d13beeb67 Mon Sep 17 00:00:00 2001 From: raschel <38816784+aymericdelab@users.noreply.github.com> Date: Sat, 11 Jan 2025 21:16:54 +0100 Subject: [PATCH] prettier (#2636) * clean * add prettier rules * update prettier ignore * prettier format * gql codegen * Fix lint CI * scarb fmt --------- Co-authored-by: Bob --- .github/workflows/lint.yml | 2 +- client/.prettierignore => .prettierignore | 8 + client/.prettierrc => .prettierrc | 0 client/apps/balancing/package.json | 2 + client/apps/game-docs/package.json | 2 + client/apps/game/package.json | 2 + .../apps/game/src/dojo/contractComponents.ts | 2211 -- .../game/src/dojo/createClientComponents.ts | 22 - client/apps/game/src/dojo/setup.ts | 2 +- client/apps/game/src/dojo/setupNetwork.ts | 3 +- .../src/hooks/helpers/battles/useBattles.tsx | 3 +- .../hooks/helpers/use-resource-arrivals.tsx | 1 - .../apps/game/src/hooks/helpers/useArmies.tsx | 2 +- .../src/hooks/helpers/useContributions.tsx | 3 +- .../game/src/hooks/helpers/useEntities.tsx | 2 +- .../apps/game/src/hooks/helpers/useGuilds.tsx | 11 +- .../src/hooks/helpers/useHyperstructures.tsx | 9 +- .../apps/game/src/hooks/helpers/useRealm.tsx | 2 +- .../src/three/components/InstancedBiome.tsx | 2 +- client/apps/game/src/three/sound/utils.ts | 2 +- .../game/src/three/systems/SystemManager.ts | 3 +- .../construction/SelectPreviewBuilding.tsx | 2 +- .../ui/components/military/PillageHistory.tsx | 9 +- .../src/ui/components/military/TroopChip.tsx | 2 +- .../modules/military/battle-view/Battle.tsx | 11 +- .../military/battle-view/BattleActions.tsx | 2 +- .../military/battle-view/BattleHistory.tsx | 3 +- .../military/battle-view/BattleSideView.tsx | 3 +- .../modules/military/battle-view/Troops.tsx | 3 +- .../battle-twitter-share-button.tsx | 3 +- .../ui/modules/military/battle-view/utils.tsx | 2 +- .../src/ui/modules/stream/eventDetails.tsx | 3 +- client/apps/game/src/ui/utils/realms.tsx | 3 +- client/apps/landing/package.json | 2 + client/apps/landing/schema.graphql | 1465 +- .../landing/src/dojo/contractComponents.ts | 2254 -- .../src/dojo/createClientComponents.ts | 14 - client/apps/landing/src/dojo/setup.ts | 96 +- client/apps/landing/src/dojo/setupNetwork.ts | 3 +- .../landing/src/hooks/gql/fragment-masking.ts | 57 +- client/apps/landing/src/hooks/gql/gql.ts | 106 +- client/apps/landing/src/hooks/gql/graphql.ts | 12497 +++++----- client/apps/landing/src/hooks/gql/index.ts | 2 +- .../src/hooks/helpers/useDonkeyArrivals.tsx | 1 - .../src/hooks/helpers/useResources.tsx | 17 +- .../src/hooks/query/capacityConfig.tsx | 22 +- .../landing/src/hooks/query/entityOwners.tsx | 2 +- client/apps/landing/src/hooks/useTravel.tsx | 9 +- client/apps/landing/src/routeTree.gen.ts | 219 +- client/common/manifests/manifest_dev.json | 147 +- client/common/manifests/manifest_mainnet.json | 129 +- client/common/manifests/manifest_prod.json | 129 +- client/package.json | 4 +- .../src/dojo/createClientComponents.ts | 2 +- contracts/formula/battles/battle_time.js | 10 +- contracts/manifest_dev.json | 85 +- contracts/manifest_mainnet.json | 85 +- contracts/manifest_prod.json | 85 +- .../season_resources/contracts/src/lib.cairo | 2 +- contracts/src/utils/map/.prettierignore | 15 + contracts/world/manifest_prod.json | 7 +- contracts/world/src/lib.cairo | 5 +- package.json | 4 +- pnpm-lock.yaml | 18991 ++++++++++------ 64 files changed, 20417 insertions(+), 18389 deletions(-) rename client/.prettierignore => .prettierignore (67%) rename client/.prettierrc => .prettierrc (100%) delete mode 100644 client/apps/game/src/dojo/contractComponents.ts delete mode 100644 client/apps/game/src/dojo/createClientComponents.ts delete mode 100644 client/apps/landing/src/dojo/contractComponents.ts delete mode 100644 client/apps/landing/src/dojo/createClientComponents.ts create mode 100644 contracts/src/utils/map/.prettierignore diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ff631612b..fc85fbbe4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -28,4 +28,4 @@ jobs: run: pnpm i - name: Run Prettier - run: pnpm run prettier-check . + run: pnpm run format:check . diff --git a/client/.prettierignore b/.prettierignore similarity index 67% rename from client/.prettierignore rename to .prettierignore index 7eda7d21a..9524c6022 100644 --- a/client/.prettierignore +++ b/.prettierignore @@ -13,3 +13,11 @@ # ignore eliza folder **/eliza + +# ignore draco files +**/draco + +# ignore generated files +**/gql +**/*.graphql +**/*.gen.ts \ No newline at end of file diff --git a/client/.prettierrc b/.prettierrc similarity index 100% rename from client/.prettierrc rename to .prettierrc diff --git a/client/apps/balancing/package.json b/client/apps/balancing/package.json index 9a3b26b9a..38e666a1d 100644 --- a/client/apps/balancing/package.json +++ b/client/apps/balancing/package.json @@ -7,6 +7,8 @@ "build": "tsc -b && vite build", "dev": "vite", "lint": "eslint .", + "format": "npx prettier --write . --root=..", + "format:check": "npx prettier --check . --root=..", "preview": "vite preview" }, "dependencies": { diff --git a/client/apps/game-docs/package.json b/client/apps/game-docs/package.json index ff963716e..908b84e8a 100644 --- a/client/apps/game-docs/package.json +++ b/client/apps/game-docs/package.json @@ -4,6 +4,8 @@ "type": "module", "scripts": { "build": "vocs build -o ../dist", + "format": "npx prettier --write . --root=..", + "format:check": "npx prettier --check . --root=..", "dev": "vocs dev" }, "packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee" diff --git a/client/apps/game/package.json b/client/apps/game/package.json index 67e58b285..1cb5e0cb5 100644 --- a/client/apps/game/package.json +++ b/client/apps/game/package.json @@ -7,6 +7,8 @@ "coverage": "vitest run --coverage", "dev": "vite", "generate-pwa-assets": "pwa-assets-generator", + "format": "npx prettier --write . --root=..", + "format:check": "npx prettier --check . --root=..", "lint": "eslint .", "lint:fix": "eslint . --ext .ts,.tsx --fix", "preview": "vite preview", diff --git a/client/apps/game/src/dojo/contractComponents.ts b/client/apps/game/src/dojo/contractComponents.ts deleted file mode 100644 index d934aee3e..000000000 --- a/client/apps/game/src/dojo/contractComponents.ts +++ /dev/null @@ -1,2211 +0,0 @@ -/* Autogenerated file. Do not edit manually. */ - -import { defineComponent, Type as RecsType, type World } from "@dojoengine/recs"; - -export function defineContractComponents(world: World) { - return { - AddressName: (() => { - return defineComponent( - world, - { address: RecsType.BigInt, name: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "AddressName", - types: ["felt252", "felt252"], - customTypes: [], - }, - }, - ); - })(), - Army: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - troops: { knight_count: RecsType.BigInt, paladin_count: RecsType.BigInt, crossbowman_count: RecsType.BigInt }, - battle_id: RecsType.Number, - battle_side: RecsType.String, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Army", - types: ["u32", "u64", "u64", "u64", "u32", "enum"], - customTypes: ["Troops", "BattleSide"], - }, - }, - ); - })(), - ArrivalTime: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, arrives_at: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "ArrivalTime", - types: ["u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - Bank: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - owner_fee_num: RecsType.BigInt, - owner_fee_denom: RecsType.BigInt, - owner_bridge_fee_dpt_percent: RecsType.Number, - owner_bridge_fee_wtdr_percent: RecsType.Number, - exists: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Bank", - types: ["u32", "u128", "u128", "u16", "u16", "bool"], - customTypes: [], - }, - }, - ); - })(), - BankConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - lords_cost: RecsType.BigInt, - lp_fee_num: RecsType.BigInt, - lp_fee_denom: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BankConfig", - types: ["u32", "u128", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - Battle: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - attack_army: { - troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - battle_id: RecsType.Number, - battle_side: RecsType.String, - }, - attack_army_lifetime: { - troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - battle_id: RecsType.Number, - battle_side: RecsType.String, - }, - defence_army: { - troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - battle_id: RecsType.Number, - battle_side: RecsType.String, - }, - defence_army_lifetime: { - troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - battle_id: RecsType.Number, - battle_side: RecsType.String, - }, - attackers_resources_escrow_id: RecsType.Number, - defenders_resources_escrow_id: RecsType.Number, - attack_army_health: { current: RecsType.BigInt, lifetime: RecsType.BigInt }, - defence_army_health: { current: RecsType.BigInt, lifetime: RecsType.BigInt }, - attack_delta: RecsType.BigInt, - defence_delta: RecsType.BigInt, - last_updated: RecsType.BigInt, - duration_left: RecsType.BigInt, - start_at: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Battle", - types: [ - "u32", - "u64", - "u64", - "u64", - "u32", - "enum", - "u64", - "u64", - "u64", - "u32", - "enum", - "u64", - "u64", - "u64", - "u32", - "enum", - "u64", - "u64", - "u64", - "u32", - "enum", - "u32", - "u32", - "u128", - "u128", - "u128", - "u128", - "u64", - "u64", - "u64", - "u64", - "u64", - ], - customTypes: [ - "BattleArmy", - "Troops", - "BattleSide", - "BattleArmy", - "Troops", - "BattleSide", - "BattleArmy", - "Troops", - "BattleSide", - "BattleArmy", - "Troops", - "BattleSide", - "BattleHealth", - "BattleHealth", - ], - }, - }, - ); - })(), - BattleConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - regular_immunity_ticks: RecsType.Number, - hyperstructure_immunity_ticks: RecsType.Number, - battle_delay_seconds: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattleConfig", - types: ["u32", "u8", "u8", "u64"], - customTypes: [], - }, - }, - ); - })(), - Building: (() => { - return defineComponent( - world, - { - outer_col: RecsType.Number, - outer_row: RecsType.Number, - inner_col: RecsType.Number, - inner_row: RecsType.Number, - category: RecsType.String, - produced_resource_type: RecsType.Number, - bonus_percent: RecsType.Number, - entity_id: RecsType.Number, - outer_entity_id: RecsType.Number, - paused: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Building", - types: ["u32", "u32", "u32", "u32", "enum", "u8", "u32", "u32", "u32", "bool"], - customTypes: ["BuildingCategory"], - }, - }, - ); - })(), - BuildingCategoryPopConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - building_category: RecsType.String, - population: RecsType.Number, - capacity: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BuildingCategoryPopConfig", - types: ["u32", "enum", "u32", "u32"], - customTypes: ["BuildingCategory"], - }, - }, - ); - })(), - BuildingConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - category: RecsType.String, - resource_type: RecsType.Number, - resource_cost_id: RecsType.Number, - resource_cost_count: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BuildingConfig", - types: ["u32", "enum", "u8", "u32", "u32"], - customTypes: ["BuildingCategory"], - }, - }, - ); - })(), - BuildingGeneralConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - base_cost_percent_increase: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BuildingGeneralConfig", - types: ["u32", "u16"], - customTypes: [], - }, - }, - ); - })(), - BuildingQuantityv2: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, category: RecsType.String, value: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "BuildingQuantityv2", - types: ["u32", "enum", "u8"], - customTypes: ["BuildingCategory"], - }, - }, - ); - })(), - CapacityCategory: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, category: RecsType.String }, - { - metadata: { - namespace: "s0_eternum", - name: "CapacityCategory", - types: ["u32", "enum"], - customTypes: ["CapacityConfigCategory"], - }, - }, - ); - })(), - CapacityConfig: (() => { - return defineComponent( - world, - { - category: RecsType.String, - weight_gram: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "CapacityConfig", - types: ["enum", "u128"], - customTypes: ["CapacityConfigCategory"], - }, - }, - ); - })(), - Contribution: (() => { - return defineComponent( - world, - { - hyperstructure_entity_id: RecsType.Number, - player_address: RecsType.BigInt, - resource_type: RecsType.Number, - amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Contribution", - types: ["u32", "contractaddress", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - DetachedResource: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - index: RecsType.Number, - resource_type: RecsType.Number, - resource_amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "DetachedResource", - types: ["u32", "u32", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - EntityName: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, name: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "EntityName", - types: ["u32", "felt252"], - customTypes: [], - }, - }, - ); - })(), - EntityOwner: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, entity_owner_id: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "EntityOwner", - types: ["u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Epoch: (() => { - return defineComponent( - world, - { - hyperstructure_entity_id: RecsType.Number, - index: RecsType.Number, - start_timestamp: RecsType.BigInt, - owners: RecsType.BigIntArray, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Epoch", - types: ["u32", "u16", "u64", "array"], - customTypes: [], - }, - }, - ); - })(), - Guild: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, is_public: RecsType.Boolean, member_count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Guild", - types: ["u32", "bool", "u16"], - customTypes: [], - }, - }, - ); - })(), - GuildMember: (() => { - return defineComponent( - world, - { address: RecsType.BigInt, guild_entity_id: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "GuildMember", - types: ["contractaddress", "u32"], - customTypes: [], - }, - }, - ); - })(), - GuildWhitelist: (() => { - return defineComponent( - world, - { address: RecsType.BigInt, guild_entity_id: RecsType.Number, is_whitelisted: RecsType.Boolean }, - { - metadata: { - namespace: "s0_eternum", - name: "GuildWhitelist", - types: ["contractaddress", "u32", "bool"], - customTypes: [], - }, - }, - ); - })(), - Health: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, current: RecsType.BigInt, lifetime: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Health", - types: ["u32", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - Hyperstructure: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - current_epoch: RecsType.Number, - completed: RecsType.Boolean, - last_updated_by: RecsType.BigInt, - last_updated_timestamp: RecsType.Number, - access: RecsType.String, - randomness: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Hyperstructure", - types: ["u32", "u16", "bool", "contractaddress", "u64", "enum", "felt252"], - customTypes: ["Access"], - }, - }, - ); - })(), - HyperstructureConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - time_between_shares_change: RecsType.Number, - points_per_cycle: RecsType.BigInt, - points_for_win: RecsType.BigInt, - points_on_completion: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "HyperstructureConfig", - types: ["u32", "u64", "u128", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - HyperstructureResourceConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - resource_tier: RecsType.Number, - min_amount: RecsType.BigInt, - max_amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "HyperstructureResourceConfig", - types: ["u32", "u8", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - Leaderboard: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - registration_end_timestamp: RecsType.Number, - total_points: RecsType.BigInt, - total_price_pool: RecsType.OptionalBigInt, - distribution_started: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Leaderboard", - types: ["u32", "u64", "u128", "u256", "bool"], - customTypes: [], - }, - }, - ); - })(), - - LeaderboardEntry: (() => { - return defineComponent( - world, - { - address: RecsType.BigInt, - points: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LeaderboardEntry", - types: ["contractaddress", "u128"], - customTypes: [], - }, - }, - ); - })(), - - LeaderboardRewardClaimed: (() => { - return defineComponent( - world, - { - address: RecsType.BigInt, - claimed: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LeaderboardRewardClaimed", - types: ["contractaddress", "bool"], - customTypes: [], - }, - }, - ); - })(), - - LeaderboardRegistered: (() => { - return defineComponent( - world, - { - address: RecsType.BigInt, - registered: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LeaderboardRegistered", - types: ["contractaddress", "bool"], - customTypes: [], - }, - }, - ); - })(), - - LeaderboardRegisterContribution: (() => { - return defineComponent( - world, - { - address: RecsType.BigInt, - hyperstructure_entity_id: RecsType.Number, - registered: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LeaderboardRegisterContribution", - types: ["contractaddress", "u32", "bool"], - customTypes: [], - }, - }, - ); - })(), - - LeaderboardRegisterShare: (() => { - return defineComponent( - world, - { - address: RecsType.BigInt, - hyperstructure_entity_id: RecsType.Number, - epoch: RecsType.Number, - registered: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LeaderboardRegisterShare", - types: ["contractaddress", "u32", "u16", "bool"], - customTypes: [], - }, - }, - ); - })(), - - Liquidity: (() => { - return defineComponent( - world, - { - bank_entity_id: RecsType.Number, - player: RecsType.BigInt, - resource_type: RecsType.Number, - shares: { mag: RecsType.BigInt, sign: RecsType.Boolean }, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Liquidity", - types: ["u32", "contractaddress", "u8", "u128", "bool"], - customTypes: ["Fixed"], - }, - }, - ); - })(), - - MapConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - reward_resource_amount: RecsType.BigInt, - shards_mines_fail_probability: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "MapConfig", - types: ["u32", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - Market: (() => { - return defineComponent( - world, - { - bank_entity_id: RecsType.Number, - resource_type: RecsType.Number, - lords_amount: RecsType.BigInt, - resource_amount: RecsType.BigInt, - total_shares: { mag: RecsType.BigInt, sign: RecsType.Boolean }, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Market", - types: ["u32", "u8", "u128", "u128", "u128", "bool"], - customTypes: ["Fixed"], - }, - }, - ); - })(), - MercenariesConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - troops: { knight_count: RecsType.BigInt, paladin_count: RecsType.BigInt, crossbowman_count: RecsType.BigInt }, - rewards: RecsType.StringArray, - }, - { - metadata: { - namespace: "s0_eternum", - name: "MercenariesConfig", - types: ["u32", "u64", "u64", "u64"], - customTypes: ["Troops"], - }, - }, - ); - })(), - Message: (() => { - return defineComponent( - world, - { - identity: RecsType.BigInt, - channel: RecsType.BigInt, - content: RecsType.String, - salt: RecsType.BigInt, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Message", - types: ["felt252", "felt252", "BytesArray", "felt252", "u64"], - customTypes: [], - }, - }, - ); - })(), - Movable: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - sec_per_km: RecsType.Number, - blocked: RecsType.Boolean, - round_trip: RecsType.Boolean, - start_coord_x: RecsType.Number, - start_coord_y: RecsType.Number, - intermediate_coord_x: RecsType.Number, - intermediate_coord_y: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Movable", - types: ["u32", "u16", "bool", "bool", "u32", "u32", "u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Orders: (() => { - return defineComponent( - world, - { order_id: RecsType.Number, hyperstructure_count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Orders", - types: ["u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - OwnedResourcesTracker: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, resource_types: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "OwnedResourcesTracker", - types: ["u32", "u256"], - customTypes: [], - }, - }, - ); - })(), - Owner: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, address: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Owner", - types: ["u32", "contractaddress"], - customTypes: [], - }, - }, - ); - })(), - Population: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, population: RecsType.Number, capacity: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Population", - types: ["u32", "u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - PopulationConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, base_population: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "PopulationConfig", - types: ["u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Position: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, x: RecsType.Number, y: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Position", - types: ["u32", "u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Production: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - resource_type: RecsType.Number, - building_count: RecsType.Number, - production_rate: RecsType.BigInt, - consumption_rate: RecsType.BigInt, - last_updated_tick: RecsType.BigInt, - input_finish_tick: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Production", - types: ["u32", "u8", "u8", "u128", "u128", "u64", "u64"], - customTypes: [], - }, - }, - ); - })(), - ProductionConfig: (() => { - return defineComponent( - world, - { - resource_type: RecsType.Number, - amount: RecsType.BigInt, - input_count: RecsType.BigInt, - output_count: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "ProductionConfig", - types: ["u8", "u128", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - ProductionDeadline: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, deadline_tick: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "ProductionDeadline", - types: ["u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - ProductionInput: (() => { - return defineComponent( - world, - { - output_resource_type: RecsType.Number, - index: RecsType.Number, - input_resource_type: RecsType.Number, - input_resource_amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "ProductionInput", - types: ["u8", "u8", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - ProductionOutput: (() => { - return defineComponent( - world, - { input_resource_type: RecsType.Number, index: RecsType.Number, output_resource_type: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "ProductionOutput", - types: ["u8", "u8", "u8"], - customTypes: [], - }, - }, - ); - })(), - Progress: (() => { - return defineComponent( - world, - { hyperstructure_entity_id: RecsType.Number, resource_type: RecsType.Number, amount: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Progress", - types: ["u32", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - Protectee: (() => { - return defineComponent( - world, - { army_id: RecsType.Number, protectee_id: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Protectee", - types: ["u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Protector: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, army_id: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Protector", - types: ["u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Quantity: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, value: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Quantity", - types: ["u32", "u128"], - customTypes: [], - }, - }, - ); - })(), - QuantityTracker: (() => { - return defineComponent( - world, - { entity_id: RecsType.BigInt, count: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "QuantityTracker", - types: ["felt252", "u128"], - customTypes: [], - }, - }, - ); - })(), - Quest: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, config_id: RecsType.Number, completed: RecsType.Boolean }, - { - metadata: { - namespace: "s0_eternum", - name: "Quest", - types: ["u32", "u32", "bool"], - customTypes: [], - }, - }, - ); - })(), - QuestBonus: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, resource_type: RecsType.Number, claimed: RecsType.Boolean }, - { - metadata: { - namespace: "s0_eternum", - name: "QuestBonus", - types: ["u32", "u8", "bool"], - customTypes: [], - }, - }, - ); - })(), - QuestConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, production_material_multiplier: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "QuestConfig", - types: ["u32", "u16"], - customTypes: [], - }, - }, - ); - })(), - QuestRewardConfig: (() => { - return defineComponent( - world, - { quest_id: RecsType.Number, detached_resource_id: RecsType.Number, detached_resource_count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "QuestRewardConfig", - types: ["u32", "u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Realm: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - realm_id: RecsType.Number, - produced_resources: RecsType.BigInt, - order: RecsType.Number, - level: RecsType.Number, - has_wonder: RecsType.Boolean, - settler_address: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Realm", - types: ["u32", "u32", "u128", "u8", "u8", "bool", "contractaddress"], - customTypes: [], - }, - }, - ); - })(), - RealmLevelConfig: (() => { - return defineComponent( - world, - { level: RecsType.Number, required_resources_id: RecsType.Number, required_resource_count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "RealmLevelConfig", - types: ["u8", "u32", "u8"], - customTypes: [], - }, - }, - ); - })(), - RealmMaxLevelConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, max_level: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "RealmMaxLevelConfig", - types: ["u32", "u8"], - customTypes: [], - }, - }, - ); - })(), - Resource: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, resource_type: RecsType.Number, balance: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Resource", - types: ["u32", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - ResourceAllowance: (() => { - return defineComponent( - world, - { - owner_entity_id: RecsType.Number, - approved_entity_id: RecsType.Number, - resource_type: RecsType.Number, - amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "ResourceAllowance", - types: ["u32", "u32", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - ResourceBridgeFeeSplitConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - velords_fee_on_dpt_percent: RecsType.Number, - velords_fee_on_wtdr_percent: RecsType.Number, - season_pool_fee_on_dpt_percent: RecsType.Number, - season_pool_fee_on_wtdr_percent: RecsType.Number, - client_fee_on_dpt_percent: RecsType.Number, - client_fee_on_wtdr_percent: RecsType.Number, - velords_fee_recipient: RecsType.BigInt, - season_pool_fee_recipient: RecsType.BigInt, - max_bank_fee_dpt_percent: RecsType.Number, - max_bank_fee_wtdr_percent: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "ResourceBridgeFeeSplitConfig", - types: [ - "u32", - "u16", - "u16", - "u16", - "u16", - "u16", - "u16", - "ContractAddress", - "ContractAddress", - "u16", - "u16", - ], - customTypes: [], - }, - }, - ); - })(), - ResourceBridgeWhitelistConfig: (() => { - return defineComponent( - world, - { - token: RecsType.BigInt, - resource_type: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "ResourceBridgeWhitelistConfig", - types: ["ContractAddress", "u8"], - customTypes: [], - }, - }, - ); - })(), - ResourceCost: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, index: RecsType.Number, resource_type: RecsType.Number, amount: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "ResourceCost", - types: ["u32", "u32", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - ResourceTransferLock: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, start_at: RecsType.BigInt, release_at: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "ResourceTransferLock", - types: ["u32", "u64", "u64"], - customTypes: [], - }, - }, - ); - })(), - Season: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - start_at: RecsType.BigInt, - is_over: RecsType.Boolean, - ended_at: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Season", - types: ["u32", "u64", "bool", "u64"], - customTypes: [], - }, - }, - ); - })(), - SeasonAddressesConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - season_pass_address: RecsType.BigInt, - realms_address: RecsType.BigInt, - lords_address: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "SeasonAddressesConfig", - types: ["u32", "ContractAddress", "ContractAddress", "ContractAddress"], - customTypes: [], - }, - }, - ); - })(), - SeasonBridgeConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - close_after_end_seconds: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "SeasonBridgeConfig", - types: ["u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - - SettlementConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - angle_scaled: RecsType.BigInt, - center: RecsType.Number, - min_scaling_factor_scaled: RecsType.BigInt, - radius: RecsType.Number, - min_distance: RecsType.Number, - max_distance: RecsType.Number, - min_angle_increase: RecsType.BigInt, - max_angle_increase: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "SettlementConfig", - types: ["u32", "u128", "u32", "u128", "u32", "u32", "u32", "u64", "u64"], - customTypes: [], - }, - }, - ); - })(), - SpeedConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - speed_config_id: RecsType.Number, - entity_type: RecsType.Number, - sec_per_km: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "SpeedConfig", - types: ["u32", "u32", "u32", "u16"], - customTypes: [], - }, - }, - ); - })(), - Stamina: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, amount: RecsType.Number, last_refill_tick: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Stamina", - types: ["u32", "u16", "u64"], - customTypes: [], - }, - }, - ); - })(), - StaminaConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, unit_type: RecsType.Number, max_stamina: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "StaminaConfig", - types: ["u32", "u8", "u16"], - customTypes: [], - }, - }, - ); - })(), - StaminaRefillConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, amount_per_tick: RecsType.Number, start_boost_tick_count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "StaminaRefillConfig", - types: ["u32", "u16", "u8"], - customTypes: [], - }, - }, - ); - })(), - Status: (() => { - return defineComponent( - world, - { trade_id: RecsType.Number, value: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Status", - types: ["u32", "u128"], - customTypes: [], - }, - }, - ); - })(), - Structure: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, category: RecsType.String, created_at: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Structure", - types: ["u32", "enum", "u64"], - customTypes: ["StructureCategory"], - }, - }, - ); - })(), - StructureCount: (() => { - return defineComponent( - world, - { coord: { x: RecsType.Number, y: RecsType.Number }, count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "StructureCount", - types: ["u32", "u32", "u8"], - customTypes: ["Coord"], - }, - }, - ); - })(), - TickConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, tick_id: RecsType.Number, tick_interval_in_seconds: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "TickConfig", - types: ["u32", "u8", "u64"], - customTypes: [], - }, - }, - ); - })(), - Tile: (() => { - return defineComponent( - world, - { - col: RecsType.Number, - row: RecsType.Number, - explored_by_id: RecsType.Number, - explored_at: RecsType.BigInt, - biome: RecsType.String, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Tile", - types: ["u32", "u32", "u32", "u64", "enum"], - customTypes: ["Biome"], - }, - }, - ); - })(), - Trade: (() => { - return defineComponent( - world, - { - trade_id: RecsType.Number, - maker_id: RecsType.Number, - maker_gives_resources_origin_id: RecsType.Number, - maker_gives_resources_id: RecsType.Number, - maker_gives_resources_hash: RecsType.BigInt, - maker_gives_resources_weight: RecsType.BigInt, - taker_id: RecsType.Number, - taker_gives_resources_origin_id: RecsType.Number, - taker_gives_resources_id: RecsType.Number, - taker_gives_resources_hash: RecsType.BigInt, - taker_gives_resources_weight: RecsType.BigInt, - expires_at: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Trade", - types: ["u32", "u32", "u32", "u32", "felt252", "u128", "u32", "u32", "u32", "felt252", "u128", "u64"], - customTypes: [], - }, - }, - ); - })(), - TravelFoodCostConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - unit_type: RecsType.Number, - explore_wheat_burn_amount: RecsType.BigInt, - explore_fish_burn_amount: RecsType.BigInt, - travel_wheat_burn_amount: RecsType.BigInt, - travel_fish_burn_amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "TravelFoodCostConfig", - types: ["u32", "u8", "u128", "u128", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - TravelStaminaCostConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - travel_type: RecsType.Number, - cost: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "TravelStaminaCostConfig", - types: ["u32", "u8", "u16"], - customTypes: [], - }, - }, - ); - })(), - TroopConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - health: RecsType.Number, - knight_strength: RecsType.Number, - paladin_strength: RecsType.Number, - crossbowman_strength: RecsType.Number, - advantage_percent: RecsType.Number, - disadvantage_percent: RecsType.Number, - max_troop_count: RecsType.Number, - pillage_health_divisor: RecsType.Number, - army_free_per_structure: RecsType.Number, - army_extra_per_building: RecsType.Number, - army_max_per_structure: RecsType.Number, - battle_leave_slash_num: RecsType.Number, - battle_leave_slash_denom: RecsType.Number, - battle_time_scale: RecsType.Number, - battle_max_time_seconds: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "TroopConfig", - types: [ - "u32", - "u32", - "u8", - "u8", - "u16", - "u16", - "u16", - "u64", - "u8", - "u8", - "u8", - "u8", - "u8", - "u8", - "u16", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - Weight: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, value: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Weight", - types: ["u32", "u128"], - customTypes: [], - }, - }, - ); - })(), - WeightConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - weight_config_id: RecsType.Number, - entity_type: RecsType.Number, - weight_gram: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "WeightConfig", - types: ["u32", "u32", "u32", "u128"], - customTypes: [], - }, - }, - ); - })(), - WorldConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, admin_address: RecsType.BigInt, realm_l2_contract: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "WorldConfig", - types: ["u32", "contractaddress", "contractaddress"], - customTypes: [], - }, - }, - ); - })(), - ...eventsComponents(world), - }; -} - -const eventsComponents = (world: World) => { - return { - events: { - AcceptOrder: (() => { - return defineComponent( - world, - { - taker_id: RecsType.Number, - maker_id: RecsType.Number, - id: RecsType.Number, - trade_id: RecsType.Number, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "AcceptOrder", - types: ["u32", "u32", "u32", "u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - - BattleClaimData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - structure_entity_id: RecsType.Number, - claimer: RecsType.BigInt, - claimer_name: RecsType.BigInt, - claimer_army_entity_id: RecsType.Number, - claimee_address: RecsType.BigInt, - claimee_name: RecsType.BigInt, - x: RecsType.Number, - y: RecsType.Number, - structure_type: RecsType.String, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattleClaimData", - types: [ - "u32", - "EventType", - "u32", - "ContractAddress", - "felt252", - "u32", - "ContractAddress", - "felt252", - "u32", - "u32", - "StructureCategory", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - - BattleJoinData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - battle_entity_id: RecsType.Number, - joiner: RecsType.BigInt, - joiner_name: RecsType.BigInt, - joiner_army_entity_id: RecsType.Number, - joiner_side: RecsType.String, - duration_left: RecsType.Number, - x: RecsType.Number, - y: RecsType.Number, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattleJoinData", - types: [ - "u32", - "EventType", - "u32", - "ContractAddress", - "felt252", - "u32", - "BattleSide", - "u64", - "u32", - "u32", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - - BattleLeaveData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - battle_entity_id: RecsType.Number, - leaver: RecsType.BigInt, - leaver_name: RecsType.BigInt, - leaver_army_entity_id: RecsType.Number, - leaver_side: RecsType.String, - duration_left: RecsType.Number, - x: RecsType.Number, - y: RecsType.Number, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattleLeaveData", - types: [ - "u32", - "EventType", - "u32", - "ContractAddress", - "felt252", - "u32", - "BattleSide", - "u64", - "u32", - "u32", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - - BattlePillageData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - pillager: RecsType.BigInt, - pillager_name: RecsType.BigInt, - pillager_realm_entity_id: RecsType.Number, - pillager_army_entity_id: RecsType.Number, - pillaged_structure_owner: RecsType.BigInt, - pillaged_structure_entity_id: RecsType.Number, - attacker_lost_troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - structure_lost_troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - pillaged_structure_owner_name: RecsType.BigInt, - winner: RecsType.String, - x: RecsType.Number, - y: RecsType.Number, - structure_type: RecsType.String, - pillaged_resources: RecsType.StringArray, - destroyed_building_category: RecsType.String, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattlePillageData", - types: [ - "u32", - "EventType", - "ContractAddress", - "felt252", - "u32", - "u32", - "ContractAddress", - "u32", - // attacking troops - "u64", - "u64", - "u64", - // structure troops - "u64", - "u64", - "u64", - "felt252", - "BattleSide", - "u32", - "u32", - "StructureCategory", - "array", - "enum", - "u64", - ], - customTypes: ["Troops", "BuildingCategory"], - }, - }, - ); - })(), - - BattleStartData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - battle_entity_id: RecsType.Number, - attacker: RecsType.BigInt, - attacker_name: RecsType.BigInt, - attacker_army_entity_id: RecsType.Number, - defender_name: RecsType.BigInt, - defender: RecsType.BigInt, - defender_army_entity_id: RecsType.Number, - duration_left: RecsType.Number, - x: RecsType.Number, - y: RecsType.Number, - structure_type: RecsType.String, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattleStartData", - types: [ - "u32", - "EventType", - "u32", - "ContractAddress", - "felt252", - "u32", - "felt252", - "ContractAddress", - "u32", - "u64", - "u32", - "u32", - "StructureCategory", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - - BurnDonkey: (() => { - return defineComponent( - world, - { - player_address: RecsType.BigInt, - entity_id: RecsType.Number, - amount: RecsType.BigInt, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BurnDonkey", - types: ["ContractAddress", "u32", "u128", "u64"], - customTypes: [], - }, - }, - ); - })(), - - CreateGuild: (() => { - return defineComponent( - world, - { - guild_entity_id: RecsType.Number, - guild_name: RecsType.BigInt, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "CreateGuild", - types: ["u32", "felt252", "u64"], - customTypes: [], - }, - }, - ); - })(), - - GameEnded: (() => { - return defineComponent( - world, - { - winner_address: RecsType.BigInt, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "GameEnded", - types: ["ContractAddress", "u64"], - customTypes: [], - }, - }, - ); - })(), - - HyperstructureContribution: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - hyperstructure_entity_id: RecsType.Number, - contributor_entity_id: RecsType.Number, - contributions: RecsType.StringArray, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "HyperstructureContribution", - types: ["u32", "u32", "u32", "array", "u64"], - customTypes: [], - }, - }, - ); - })(), - - HyperstructureFinished: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - hyperstructure_entity_id: RecsType.Number, - contributor_entity_id: RecsType.Number, - timestamp: RecsType.Number, - hyperstructure_owner_name: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "HyperstructureFinished", - types: ["u32", "u32", "u32", "felt252", "u64"], - customTypes: [], - }, - }, - ); - })(), - - JoinGuild: (() => { - return defineComponent( - world, - { - guild_entity_id: RecsType.Number, - address: RecsType.BigInt, - guild_name: RecsType.BigInt, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "JoinGuild", - types: ["u32", "ContractAddress", "felt252", "u64"], - customTypes: [], - }, - }, - ); - })(), - - LiquidityEvent: (() => { - return defineComponent( - world, - { - bank_entity_id: RecsType.Number, - entity_id: RecsType.Number, - resource_type: RecsType.Number, - lords_amount: RecsType.BigInt, - resource_amount: RecsType.BigInt, - resource_price: RecsType.BigInt, - add: RecsType.Boolean, - timestamp: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LiquidityEvent", - types: ["u32", "u32", "u8", "u128", "u128", "u128", "bool", "u64"], - customTypes: [], - }, - }, - ); - })(), - - MapExplored: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - col: RecsType.Number, - row: RecsType.Number, - id: RecsType.Number, - entity_owner_id: RecsType.Number, - biome: RecsType.String, - reward: RecsType.StringArray, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "MapExplored", - types: ["u32", "u32", "u32", "u32", "u32", "Biome", "array", "u64"], - customTypes: [], - }, - }, - ); - })(), - - SwapEvent: (() => { - return defineComponent( - world, - { - bank_entity_id: RecsType.Number, - entity_id: RecsType.Number, - id: RecsType.Number, - resource_type: RecsType.Number, - lords_amount: RecsType.BigInt, - resource_amount: RecsType.BigInt, - bank_owner_fees: RecsType.BigInt, - lp_fees: RecsType.BigInt, - resource_price: RecsType.BigInt, - buy: RecsType.Boolean, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "SwapEvent", - types: ["u32", "u32", "u32", "u8", "u128", "u128", "u128", "u128", "u128", "bool", "u64"], - customTypes: [], - }, - }, - ); - })(), - - SettleRealmData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - entity_id: RecsType.Number, - owner_address: RecsType.BigInt, - owner_name: RecsType.BigInt, - realm_name: RecsType.BigInt, - produced_resources: RecsType.BigInt, - cities: RecsType.Number, - harbors: RecsType.Number, - rivers: RecsType.Number, - regions: RecsType.Number, - wonder: RecsType.Number, - order: RecsType.Number, - x: RecsType.Number, - y: RecsType.Number, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "SettleRealmData", - types: [ - "u32", - "EventType", - "u32", - "ContractAddress", - "felt252", - "felt252", - "u128", - "u8", - "u8", - "u8", - "u8", - "u8", - "u8", - "u32", - "u32", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - - Transfer: (() => { - return defineComponent( - world, - { - recipient_entity_id: RecsType.Number, - sending_realm_id: RecsType.Number, - sender_entity_id: RecsType.Number, - resources: RecsType.StringArray, - timestamp: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Transfer", - types: ["u32", "u32", "u32", "array", "u64"], - customTypes: ["Coord"], - }, - }, - ); - })(), - - Travel: (() => { - return defineComponent( - world, - { - destination_coord_x: RecsType.Number, - destination_coord_y: RecsType.Number, - owner: RecsType.BigInt, - entity_id: RecsType.Number, - travel_time: RecsType.BigInt, - travel_path: RecsType.StringArray, - timestamp: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Travel", - types: ["u32", "u32", "ContractAddress", "u32", "array", "u64"], - customTypes: ["Coord"], - }, - }, - ); - })(), - - TrophyProgression: (() => { - return defineComponent( - world, - { - player_id: RecsType.BigInt, - task_id: RecsType.BigInt, - count: RecsType.Number, - time: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "TrophyProgression", - types: ["felt252", "felt252", "u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - HyperstructureCoOwnersChange: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - hyperstructure_entity_id: RecsType.Number, - co_owners: RecsType.StringArray, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "HyperstructureCoOwnersChange", - types: ["u32", "u32", "array", "u64"], - customTypes: [], - }, - }, - ); - })(), - }, - }; -}; diff --git a/client/apps/game/src/dojo/createClientComponents.ts b/client/apps/game/src/dojo/createClientComponents.ts deleted file mode 100644 index 02316f36c..000000000 --- a/client/apps/game/src/dojo/createClientComponents.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { overridableComponent } from "@dojoengine/recs"; -import { SetupNetworkResult } from "./setupNetwork"; - -export type ClientComponents = ReturnType; - -export function createClientComponents({ contractComponents }: SetupNetworkResult) { - return { - ...contractComponents, - Building: overridableComponent(contractComponents.Building), - Position: overridableComponent(contractComponents.Position), - Stamina: overridableComponent(contractComponents.Stamina), - Tile: overridableComponent(contractComponents.Tile), - Population: overridableComponent(contractComponents.Population), - Resource: overridableComponent(contractComponents.Resource), - Weight: overridableComponent(contractComponents.Weight), - OwnedResourcesTracker: overridableComponent(contractComponents.OwnedResourcesTracker), - Army: overridableComponent(contractComponents.Army), - BuildingQuantityv2: overridableComponent(contractComponents.BuildingQuantityv2), - Structure: overridableComponent(contractComponents.Structure), - ArrivalTime: overridableComponent(contractComponents.ArrivalTime), - }; -} diff --git a/client/apps/game/src/dojo/setup.ts b/client/apps/game/src/dojo/setup.ts index a2bed67bd..11b3d3392 100644 --- a/client/apps/game/src/dojo/setup.ts +++ b/client/apps/game/src/dojo/setup.ts @@ -3,6 +3,7 @@ import { LoadingStateKey } from "@/hooks/store/useWorldLoading"; import { BUILDING_CATEGORY_POPULATION_CONFIG_ID, ClientConfigManager, + createClientComponents, HYPERSTRUCTURE_CONFIG_ID, WORLD_CONFIG_ID, } from "@bibliothecadao/eternum"; @@ -11,7 +12,6 @@ import { Component, Metadata, Schema } from "@dojoengine/recs"; import { getEntities, getEvents, setEntities } from "@dojoengine/state"; import { Clause, EntityKeysClause, ToriiClient } from "@dojoengine/torii-client"; import { debounce } from "lodash"; -import { createClientComponents } from "./createClientComponents"; import { createSystemCalls } from "./createSystemCalls"; import { setupNetwork } from "./setupNetwork"; diff --git a/client/apps/game/src/dojo/setupNetwork.ts b/client/apps/game/src/dojo/setupNetwork.ts index 84bd155a5..6a8bedc43 100644 --- a/client/apps/game/src/dojo/setupNetwork.ts +++ b/client/apps/game/src/dojo/setupNetwork.ts @@ -1,6 +1,5 @@ -import { EternumProvider } from "@bibliothecadao/eternum"; +import { defineContractComponents, EternumProvider } from "@bibliothecadao/eternum"; import { DojoConfig } from "@dojoengine/core"; -import { defineContractComponents } from "./contractComponents"; import { world } from "./world"; import { BurnerManager } from "@dojoengine/create-burner"; diff --git a/client/apps/game/src/hooks/helpers/battles/useBattles.tsx b/client/apps/game/src/hooks/helpers/battles/useBattles.tsx index d3bfc98de..9dd32e06d 100644 --- a/client/apps/game/src/hooks/helpers/battles/useBattles.tsx +++ b/client/apps/game/src/hooks/helpers/battles/useBattles.tsx @@ -1,5 +1,4 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; -import { BattleManager, EternumGlobalConfig, ID, Position } from "@bibliothecadao/eternum"; +import { BattleManager, ClientComponents, EternumGlobalConfig, ID, Position } from "@bibliothecadao/eternum"; import { useComponentValue, useEntityQuery } from "@dojoengine/react"; import { Component, diff --git a/client/apps/game/src/hooks/helpers/use-resource-arrivals.tsx b/client/apps/game/src/hooks/helpers/use-resource-arrivals.tsx index f967ccde8..fb59f9865 100644 --- a/client/apps/game/src/hooks/helpers/use-resource-arrivals.tsx +++ b/client/apps/game/src/hooks/helpers/use-resource-arrivals.tsx @@ -73,7 +73,6 @@ const usePlayerArrivals = () => { ownedResourceTracker?.resource_types === LORDS_RESOURCE_TRACKER || ownedResourceTracker?.resource_types === LORDS_AND_DONKEY_RESOURCE_TRACKER; - // Determine if entity meets weight requirements const meetsWeightRequirement = hasSpecialResources || hasMinWeight(id); diff --git a/client/apps/game/src/hooks/helpers/useArmies.tsx b/client/apps/game/src/hooks/helpers/useArmies.tsx index 04806f7c7..82e456f08 100644 --- a/client/apps/game/src/hooks/helpers/useArmies.tsx +++ b/client/apps/game/src/hooks/helpers/useArmies.tsx @@ -1,10 +1,10 @@ -import { type ClientComponents } from "@/dojo/createClientComponents"; import { ArmyInfo, CapacityConfigCategory, ContractAddress, EternumGlobalConfig, getArmyTotalCapacity, + type ClientComponents, type ID, type Position, } from "@bibliothecadao/eternum"; diff --git a/client/apps/game/src/hooks/helpers/useContributions.tsx b/client/apps/game/src/hooks/helpers/useContributions.tsx index 9024c0ab9..f0dec3124 100644 --- a/client/apps/game/src/hooks/helpers/useContributions.tsx +++ b/client/apps/game/src/hooks/helpers/useContributions.tsx @@ -1,7 +1,6 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { configManager } from "@/dojo/setup"; import { divideByPrecision } from "@/ui/utils/utils"; -import { ContractAddress, ID, Resource } from "@bibliothecadao/eternum"; +import { ClientComponents, ContractAddress, ID, Resource } from "@bibliothecadao/eternum"; import { useEntityQuery } from "@dojoengine/react"; import { ComponentValue, HasValue, getComponentValue, runQuery } from "@dojoengine/recs"; import { useCallback } from "react"; diff --git a/client/apps/game/src/hooks/helpers/useEntities.tsx b/client/apps/game/src/hooks/helpers/useEntities.tsx index c145b0c36..40178214d 100644 --- a/client/apps/game/src/hooks/helpers/useEntities.tsx +++ b/client/apps/game/src/hooks/helpers/useEntities.tsx @@ -1,4 +1,3 @@ -import { type ClientComponents } from "@/dojo/createClientComponents"; import { getRealmName, getRealmNameById } from "@/ui/utils/realms"; import { divideByPrecision, getEntityIdFromKeys } from "@/ui/utils/utils"; import { @@ -6,6 +5,7 @@ import { ContractAddress, EntityType, StructureType, + type ClientComponents, type ID, } from "@bibliothecadao/eternum"; import { useEntityQuery } from "@dojoengine/react"; diff --git a/client/apps/game/src/hooks/helpers/useGuilds.tsx b/client/apps/game/src/hooks/helpers/useGuilds.tsx index 5b5599698..3cb8f5ba5 100644 --- a/client/apps/game/src/hooks/helpers/useGuilds.tsx +++ b/client/apps/game/src/hooks/helpers/useGuilds.tsx @@ -1,6 +1,13 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { formatTime, toHexString } from "@/ui/utils/utils"; -import { ContractAddress, GuildInfo, GuildMemberInfo, GuildWhitelistInfo, ID, Player } from "@bibliothecadao/eternum"; +import { + ClientComponents, + ContractAddress, + GuildInfo, + GuildMemberInfo, + GuildWhitelistInfo, + ID, + Player, +} from "@bibliothecadao/eternum"; import { useEntityQuery } from "@dojoengine/react"; import { Component, Entity, Has, HasValue, NotValue, getComponentValue, runQuery } from "@dojoengine/recs"; import { getEntityIdFromKeys } from "@dojoengine/utils"; diff --git a/client/apps/game/src/hooks/helpers/useHyperstructures.tsx b/client/apps/game/src/hooks/helpers/useHyperstructures.tsx index e235b3959..f94e41615 100644 --- a/client/apps/game/src/hooks/helpers/useHyperstructures.tsx +++ b/client/apps/game/src/hooks/helpers/useHyperstructures.tsx @@ -1,7 +1,12 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { configManager } from "@/dojo/setup"; import { divideByPrecision, toHexString, toInteger } from "@/ui/utils/utils"; -import { ContractAddress, DUMMY_HYPERSTRUCTURE_ENTITY_ID, ID, ResourcesIds } from "@bibliothecadao/eternum"; +import { + ClientComponents, + ContractAddress, + DUMMY_HYPERSTRUCTURE_ENTITY_ID, + ID, + ResourcesIds, +} from "@bibliothecadao/eternum"; import { useEntityQuery } from "@dojoengine/react"; import { Component, ComponentValue, Entity, Has, HasValue, getComponentValue, runQuery } from "@dojoengine/recs"; import { useCallback, useMemo } from "react"; diff --git a/client/apps/game/src/hooks/helpers/useRealm.tsx b/client/apps/game/src/hooks/helpers/useRealm.tsx index a3dad3e5f..b77fbafb3 100644 --- a/client/apps/game/src/hooks/helpers/useRealm.tsx +++ b/client/apps/game/src/hooks/helpers/useRealm.tsx @@ -1,9 +1,9 @@ -import { type ClientComponents } from "@/dojo/createClientComponents"; import { configManager } from "@/dojo/setup"; import { ContractAddress, getOrderName, getQuestResources as getStartingResources, + type ClientComponents, type ID, } from "@bibliothecadao/eternum"; import { useEntityQuery } from "@dojoengine/react"; diff --git a/client/apps/game/src/three/components/InstancedBiome.tsx b/client/apps/game/src/three/components/InstancedBiome.tsx index e97364d41..4d213e261 100644 --- a/client/apps/game/src/three/components/InstancedBiome.tsx +++ b/client/apps/game/src/three/components/InstancedBiome.tsx @@ -44,7 +44,7 @@ export default class InstancedModel { tmp.userData.isInstanceModel = true; if (!enableRaycast) { - tmp.raycast = () => { }; + tmp.raycast = () => {}; } this.mixer = new AnimationMixer(gltf.scene); diff --git a/client/apps/game/src/three/sound/utils.ts b/client/apps/game/src/three/sound/utils.ts index 67a7ee1c2..36523bb05 100644 --- a/client/apps/game/src/three/sound/utils.ts +++ b/client/apps/game/src/three/sound/utils.ts @@ -30,7 +30,7 @@ export const playBuildingSound = (buildingType: BuildingType | undefined, hasSou const soundFile = buildingType === undefined ? soundSelector.buildCastle - : buildingSounds[buildingType as BuildingType] ?? soundSelector.buildMine; + : (buildingSounds[buildingType as BuildingType] ?? soundSelector.buildMine); playSound(soundFile, hasSound, volume); }; diff --git a/client/apps/game/src/three/systems/SystemManager.ts b/client/apps/game/src/three/systems/SystemManager.ts index def27b468..947832277 100644 --- a/client/apps/game/src/three/systems/SystemManager.ts +++ b/client/apps/game/src/three/systems/SystemManager.ts @@ -1,8 +1,7 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { configManager, SetupResult } from "@/dojo/setup"; import { Position } from "@/types/Position"; import { divideByPrecision } from "@/ui/utils/utils"; -import { ID, RealmLevels, StructureType, type HexPosition } from "@bibliothecadao/eternum"; +import { ClientComponents, ID, RealmLevels, StructureType, type HexPosition } from "@bibliothecadao/eternum"; import { Component, ComponentValue, diff --git a/client/apps/game/src/ui/components/construction/SelectPreviewBuilding.tsx b/client/apps/game/src/ui/components/construction/SelectPreviewBuilding.tsx index 4ae6c1296..8afa31c26 100644 --- a/client/apps/game/src/ui/components/construction/SelectPreviewBuilding.tsx +++ b/client/apps/game/src/ui/components/construction/SelectPreviewBuilding.tsx @@ -1,5 +1,4 @@ import { ReactComponent as InfoIcon } from "@/assets/icons/common/info.svg"; -import { ClientComponents } from "@/dojo/createClientComponents"; import { configManager } from "@/dojo/setup"; import { DojoResult, useDojo } from "@/hooks/context/DojoContext"; import { useGetRealm } from "@/hooks/helpers/useRealm"; @@ -27,6 +26,7 @@ import { BuildingEnumToString, BuildingType, CapacityConfigCategory, + ClientComponents, ID, ResourceCost as ResourceCostType, ResourcesIds, diff --git a/client/apps/game/src/ui/components/military/PillageHistory.tsx b/client/apps/game/src/ui/components/military/PillageHistory.tsx index c696d77ce..bcf538f3e 100644 --- a/client/apps/game/src/ui/components/military/PillageHistory.tsx +++ b/client/apps/game/src/ui/components/military/PillageHistory.tsx @@ -1,11 +1,10 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { useDojo } from "@/hooks/context/DojoContext"; import { useEntitiesUtils } from "@/hooks/helpers/useEntities"; import { ResourceCost } from "@/ui/elements/ResourceCost"; import TwitterShareButton from "@/ui/elements/TwitterShareButton"; import { formatSocialText, twitterTemplates } from "@/ui/socials"; import { divideByPrecision, formatNumber, formatResources, formatTime } from "@/ui/utils/utils"; -import { BattleSide, ID, Resource, resources } from "@bibliothecadao/eternum"; +import { BattleSide, ClientComponents, ID, Resource, resources } from "@bibliothecadao/eternum"; import { ComponentValue, defineQuery, getComponentValue, HasValue, isComponentUpdate } from "@dojoengine/recs"; import { useEffect, useMemo, useState } from "react"; import { env } from "../../../../env"; @@ -38,9 +37,9 @@ const PillageHistoryItem = ({ addressName, history }: { addressName: string; his resources: formattedResources .map( (pillagedResource) => - `${formatNumber(divideByPrecision(pillagedResource.amount), 0)} ${resources.find( - (resource) => resource.id === pillagedResource.resourceId, - )?.trait}`, + `${formatNumber(divideByPrecision(pillagedResource.amount), 0)} ${ + resources.find((resource) => resource.id === pillagedResource.resourceId)?.trait + }`, ) .join(", "), url: env.VITE_SOCIAL_LINK, diff --git a/client/apps/game/src/ui/components/military/TroopChip.tsx b/client/apps/game/src/ui/components/military/TroopChip.tsx index ede4ff5a0..162b9a577 100644 --- a/client/apps/game/src/ui/components/military/TroopChip.tsx +++ b/client/apps/game/src/ui/components/military/TroopChip.tsx @@ -1,6 +1,6 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { ResourceIcon } from "@/ui/elements/ResourceIcon"; import { currencyFormat } from "@/ui/utils/utils"; +import { ClientComponents } from "@bibliothecadao/eternum"; import { ComponentValue } from "@dojoengine/recs"; export const TroopDisplay = ({ diff --git a/client/apps/game/src/ui/modules/military/battle-view/Battle.tsx b/client/apps/game/src/ui/modules/military/battle-view/Battle.tsx index d7f5db79c..b5dc7db2f 100644 --- a/client/apps/game/src/ui/modules/military/battle-view/Battle.tsx +++ b/client/apps/game/src/ui/modules/military/battle-view/Battle.tsx @@ -1,8 +1,15 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { HintSection } from "@/ui/components/hints/HintModal"; import Button from "@/ui/elements/Button"; import { HintModalButton } from "@/ui/elements/HintModalButton"; -import { ArmyInfo, BattleManager, BattleSide, ID, Structure, type Health } from "@bibliothecadao/eternum"; +import { + ArmyInfo, + BattleManager, + BattleSide, + ClientComponents, + ID, + Structure, + type Health, +} from "@bibliothecadao/eternum"; import { ComponentValue } from "@dojoengine/recs"; import { motion } from "framer-motion"; import { memo, useState } from "react"; diff --git a/client/apps/game/src/ui/modules/military/battle-view/BattleActions.tsx b/client/apps/game/src/ui/modules/military/battle-view/BattleActions.tsx index 00bc64941..d9b2b8284 100644 --- a/client/apps/game/src/ui/modules/military/battle-view/BattleActions.tsx +++ b/client/apps/game/src/ui/modules/military/battle-view/BattleActions.tsx @@ -1,4 +1,3 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { useDojo } from "@/hooks/context/DojoContext"; import { getArmyByEntityId } from "@/hooks/helpers/useArmies"; import { useModalStore } from "@/hooks/store/useModalStore"; @@ -13,6 +12,7 @@ import { BattleManager, BattleStartStatus, ClaimStatus, + ClientComponents, ID, LeaveStatus, RaidStatus, diff --git a/client/apps/game/src/ui/modules/military/battle-view/BattleHistory.tsx b/client/apps/game/src/ui/modules/military/battle-view/BattleHistory.tsx index a70658a9e..759d90fda 100644 --- a/client/apps/game/src/ui/modules/military/battle-view/BattleHistory.tsx +++ b/client/apps/game/src/ui/modules/military/battle-view/BattleHistory.tsx @@ -1,8 +1,7 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { getArmyByEntityId } from "@/hooks/helpers/useArmies"; import { useBattleJoin, useBattleLeave, useBattleStart } from "@/hooks/helpers/useBattleEvents"; import { currencyFormat, formatTime } from "@/ui/utils/utils"; -import { BattleSide, ID } from "@bibliothecadao/eternum"; +import { BattleSide, ClientComponents, ID } from "@bibliothecadao/eternum"; import { ComponentValue } from "@dojoengine/recs"; import React, { useMemo } from "react"; import { shortString } from "starknet"; diff --git a/client/apps/game/src/ui/modules/military/battle-view/BattleSideView.tsx b/client/apps/game/src/ui/modules/military/battle-view/BattleSideView.tsx index 487ad7dac..44afb06fd 100644 --- a/client/apps/game/src/ui/modules/military/battle-view/BattleSideView.tsx +++ b/client/apps/game/src/ui/modules/military/battle-view/BattleSideView.tsx @@ -1,10 +1,9 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { useDojo } from "@/hooks/context/DojoContext"; import { useArmyByArmyEntityId } from "@/hooks/helpers/useArmies"; import { useEntitiesUtils } from "@/hooks/helpers/useEntities"; import useNextBlockTimestamp from "@/hooks/useNextBlockTimestamp"; import Button from "@/ui/elements/Button"; -import { ArmyInfo, BattleManager, BattleSide, ID, Structure } from "@bibliothecadao/eternum"; +import { ArmyInfo, BattleManager, BattleSide, ClientComponents, ID, Structure } from "@bibliothecadao/eternum"; import { ComponentValue } from "@dojoengine/recs"; import React, { useMemo, useState } from "react"; import { BattleHistory } from "./BattleHistory"; diff --git a/client/apps/game/src/ui/modules/military/battle-view/Troops.tsx b/client/apps/game/src/ui/modules/military/battle-view/Troops.tsx index b49aa6b36..a0d45c5f4 100644 --- a/client/apps/game/src/ui/modules/military/battle-view/Troops.tsx +++ b/client/apps/game/src/ui/modules/military/battle-view/Troops.tsx @@ -1,6 +1,5 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { currencyFormat } from "@/ui/utils/utils"; -import { ResourcesIds } from "@bibliothecadao/eternum"; +import { ClientComponents, ResourcesIds } from "@bibliothecadao/eternum"; import { ComponentValue } from "@dojoengine/recs"; export const TroopRow = ({ diff --git a/client/apps/game/src/ui/modules/military/battle-view/battle-twitter-share-button.tsx b/client/apps/game/src/ui/modules/military/battle-view/battle-twitter-share-button.tsx index 904a745ff..cbeb529a4 100644 --- a/client/apps/game/src/ui/modules/military/battle-view/battle-twitter-share-button.tsx +++ b/client/apps/game/src/ui/modules/military/battle-view/battle-twitter-share-button.tsx @@ -1,9 +1,8 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { useEntitiesUtils } from "@/hooks/helpers/useEntities"; import TwitterShareButton from "@/ui/elements/TwitterShareButton"; import { formatSocialText, twitterTemplates } from "@/ui/socials"; import { currencyFormat } from "@/ui/utils/utils"; -import { ArmyInfo, BattleSide, Structure } from "@bibliothecadao/eternum"; +import { ArmyInfo, BattleSide, ClientComponents, Structure } from "@bibliothecadao/eternum"; import { ComponentValue } from "@dojoengine/recs"; import { useMemo } from "react"; import { env } from "../../../../../env"; diff --git a/client/apps/game/src/ui/modules/military/battle-view/utils.tsx b/client/apps/game/src/ui/modules/military/battle-view/utils.tsx index b20301afa..fc1e71492 100644 --- a/client/apps/game/src/ui/modules/military/battle-view/utils.tsx +++ b/client/apps/game/src/ui/modules/military/battle-view/utils.tsx @@ -1,8 +1,8 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { configManager } from "@/dojo/setup"; import { roundDownToPrecision, roundUpToPrecision } from "@/ui/utils/utils"; import { Battle, + ClientComponents, HealthSimulator, Percentage, ResourcesIds, diff --git a/client/apps/game/src/ui/modules/stream/eventDetails.tsx b/client/apps/game/src/ui/modules/stream/eventDetails.tsx index 8b2504c0e..a1fbe09b6 100644 --- a/client/apps/game/src/ui/modules/stream/eventDetails.tsx +++ b/client/apps/game/src/ui/modules/stream/eventDetails.tsx @@ -9,9 +9,8 @@ import { ReactComponent as Scroll } from "@/assets/icons/Scroll.svg"; import { ReactComponent as Sparkles } from "@/assets/icons/Sparkles.svg"; import { ReactComponent as Swap } from "@/assets/icons/Swap.svg"; import { ReactComponent as Wrench } from "@/assets/icons/Wrench.svg"; -import { ClientComponents } from "@/dojo/createClientComponents"; import { currencyFormat } from "@/ui/utils/utils"; -import { ContractAddress, findResourceById, ID } from "@bibliothecadao/eternum"; +import { ClientComponents, ContractAddress, findResourceById, ID } from "@bibliothecadao/eternum"; import { ComponentValue } from "@dojoengine/recs"; import { hexToAscii } from "@dojoengine/utils"; import { EventType } from "./types"; diff --git a/client/apps/game/src/ui/utils/realms.tsx b/client/apps/game/src/ui/utils/realms.tsx index 65e5cce87..2527d82a9 100644 --- a/client/apps/game/src/ui/utils/realms.tsx +++ b/client/apps/game/src/ui/utils/realms.tsx @@ -1,6 +1,5 @@ -import { ClientComponents } from "@/dojo/createClientComponents"; import { configManager } from "@/dojo/setup"; -import { findResourceIdByTrait, ID, orders, RealmInterface } from "@bibliothecadao/eternum"; +import { ClientComponents, findResourceIdByTrait, ID, orders, RealmInterface } from "@bibliothecadao/eternum"; import { ComponentValue } from "@dojoengine/recs"; import realmsJson from "../../../../../common/data/realms.json"; import { packResources } from "./packedData"; diff --git a/client/apps/landing/package.json b/client/apps/landing/package.json index 127978537..f73aac780 100644 --- a/client/apps/landing/package.json +++ b/client/apps/landing/package.json @@ -9,6 +9,8 @@ "codegen": "graphql-codegen --config codegen.ts", "dev": "vite", "dev::sepolia": "vite --mode sepolia", + "format": "npx prettier --write . --root=..", + "format:check": "npx prettier --check . --root=..", "lint": "eslint .", "preview": "vite preview", "storybook": "storybook dev -p 6006" diff --git a/client/apps/landing/schema.graphql b/client/apps/landing/schema.graphql index f7dac9168..f5a8516cd 100644 --- a/client/apps/landing/schema.graphql +++ b/client/apps/landing/schema.graphql @@ -35,7 +35,123 @@ union ERC__Token = ERC20__Token | ERC721__Token scalar Enum -union ModelUnion = s0_eternum_AcceptOrder | s0_eternum_AcceptPartialOrder | s0_eternum_AddressName | s0_eternum_Army | s0_eternum_ArrivalTime | s0_eternum_Bank | s0_eternum_BankConfig | s0_eternum_Battle | s0_eternum_BattleClaimData | s0_eternum_BattleConfig | s0_eternum_BattleJoinData | s0_eternum_BattleLeaveData | s0_eternum_BattlePillageData | s0_eternum_BattleStartData | s0_eternum_Building | s0_eternum_BuildingCategoryPopConfig | s0_eternum_BuildingConfig | s0_eternum_BuildingGeneralConfig | s0_eternum_BuildingQuantityv2 | s0_eternum_BurnDonkey | s0_eternum_CancelOrder | s0_eternum_CapacityCategory | s0_eternum_CapacityConfig | s0_eternum_Contribution | s0_eternum_CreateGuild | s0_eternum_CreateOrder | s0_eternum_DetachedResource | s0_eternum_EntityName | s0_eternum_EntityOwner | s0_eternum_Epoch | s0_eternum_FragmentMineDiscovered | s0_eternum_GameEnded | s0_eternum_Guild | s0_eternum_GuildMember | s0_eternum_GuildWhitelist | s0_eternum_Health | s0_eternum_Hyperstructure | s0_eternum_HyperstructureCoOwnersChange | s0_eternum_HyperstructureConfig | s0_eternum_HyperstructureContribution | s0_eternum_HyperstructureFinished | s0_eternum_HyperstructureResourceConfig | s0_eternum_HyperstructureStarted | s0_eternum_JoinGuild | s0_eternum_Leaderboard | s0_eternum_LeaderboardEntry | s0_eternum_LeaderboardRegisterContribution | s0_eternum_LeaderboardRegisterShare | s0_eternum_LeaderboardRegistered | s0_eternum_LeaderboardRewardClaimed | s0_eternum_LevelingConfig | s0_eternum_Liquidity | s0_eternum_LiquidityEvent | s0_eternum_MapConfig | s0_eternum_MapExplored | s0_eternum_Market | s0_eternum_MercenariesConfig | s0_eternum_Message | s0_eternum_Movable | s0_eternum_Orders | s0_eternum_OwnedResourcesTracker | s0_eternum_Owner | s0_eternum_Population | s0_eternum_PopulationConfig | s0_eternum_Position | s0_eternum_Production | s0_eternum_ProductionConfig | s0_eternum_ProductionDeadline | s0_eternum_ProductionInput | s0_eternum_ProductionOutput | s0_eternum_Progress | s0_eternum_Protectee | s0_eternum_Protector | s0_eternum_Quantity | s0_eternum_QuantityTracker | s0_eternum_Quest | s0_eternum_QuestBonus | s0_eternum_QuestConfig | s0_eternum_QuestRewardConfig | s0_eternum_Realm | s0_eternum_RealmLevelConfig | s0_eternum_RealmMaxLevelConfig | s0_eternum_Resource | s0_eternum_ResourceAllowance | s0_eternum_ResourceBridgeConfig | s0_eternum_ResourceBridgeFeeSplitConfig | s0_eternum_ResourceBridgeWhitelistConfig | s0_eternum_ResourceCost | s0_eternum_ResourceTransferLock | s0_eternum_Season | s0_eternum_SeasonAddressesConfig | s0_eternum_SeasonBridgeConfig | s0_eternum_SettleRealmData | s0_eternum_SettlementConfig | s0_eternum_SpeedConfig | s0_eternum_Stamina | s0_eternum_StaminaConfig | s0_eternum_StaminaRefillConfig | s0_eternum_Status | s0_eternum_Structure | s0_eternum_StructureCount | s0_eternum_SwapEvent | s0_eternum_TickConfig | s0_eternum_Tile | s0_eternum_Trade | s0_eternum_Transfer | s0_eternum_Travel | s0_eternum_TravelFoodCostConfig | s0_eternum_TravelStaminaCostConfig | s0_eternum_TroopConfig | s0_eternum_TrophyCreation | s0_eternum_TrophyProgression | s0_eternum_VRFConfig | s0_eternum_Weight | s0_eternum_WeightConfig | s0_eternum_WorldConfig +union ModelUnion = + | s0_eternum_AcceptOrder + | s0_eternum_AcceptPartialOrder + | s0_eternum_AddressName + | s0_eternum_Army + | s0_eternum_ArrivalTime + | s0_eternum_Bank + | s0_eternum_BankConfig + | s0_eternum_Battle + | s0_eternum_BattleClaimData + | s0_eternum_BattleConfig + | s0_eternum_BattleJoinData + | s0_eternum_BattleLeaveData + | s0_eternum_BattlePillageData + | s0_eternum_BattleStartData + | s0_eternum_Building + | s0_eternum_BuildingCategoryPopConfig + | s0_eternum_BuildingConfig + | s0_eternum_BuildingGeneralConfig + | s0_eternum_BuildingQuantityv2 + | s0_eternum_BurnDonkey + | s0_eternum_CancelOrder + | s0_eternum_CapacityCategory + | s0_eternum_CapacityConfig + | s0_eternum_Contribution + | s0_eternum_CreateGuild + | s0_eternum_CreateOrder + | s0_eternum_DetachedResource + | s0_eternum_EntityName + | s0_eternum_EntityOwner + | s0_eternum_Epoch + | s0_eternum_FragmentMineDiscovered + | s0_eternum_GameEnded + | s0_eternum_Guild + | s0_eternum_GuildMember + | s0_eternum_GuildWhitelist + | s0_eternum_Health + | s0_eternum_Hyperstructure + | s0_eternum_HyperstructureCoOwnersChange + | s0_eternum_HyperstructureConfig + | s0_eternum_HyperstructureContribution + | s0_eternum_HyperstructureFinished + | s0_eternum_HyperstructureResourceConfig + | s0_eternum_HyperstructureStarted + | s0_eternum_JoinGuild + | s0_eternum_Leaderboard + | s0_eternum_LeaderboardEntry + | s0_eternum_LeaderboardRegisterContribution + | s0_eternum_LeaderboardRegisterShare + | s0_eternum_LeaderboardRegistered + | s0_eternum_LeaderboardRewardClaimed + | s0_eternum_LevelingConfig + | s0_eternum_Liquidity + | s0_eternum_LiquidityEvent + | s0_eternum_MapConfig + | s0_eternum_MapExplored + | s0_eternum_Market + | s0_eternum_MercenariesConfig + | s0_eternum_Message + | s0_eternum_Movable + | s0_eternum_Orders + | s0_eternum_OwnedResourcesTracker + | s0_eternum_Owner + | s0_eternum_Population + | s0_eternum_PopulationConfig + | s0_eternum_Position + | s0_eternum_Production + | s0_eternum_ProductionConfig + | s0_eternum_ProductionDeadline + | s0_eternum_ProductionInput + | s0_eternum_ProductionOutput + | s0_eternum_Progress + | s0_eternum_Protectee + | s0_eternum_Protector + | s0_eternum_Quantity + | s0_eternum_QuantityTracker + | s0_eternum_Quest + | s0_eternum_QuestBonus + | s0_eternum_QuestConfig + | s0_eternum_QuestRewardConfig + | s0_eternum_Realm + | s0_eternum_RealmLevelConfig + | s0_eternum_RealmMaxLevelConfig + | s0_eternum_Resource + | s0_eternum_ResourceAllowance + | s0_eternum_ResourceBridgeConfig + | s0_eternum_ResourceBridgeFeeSplitConfig + | s0_eternum_ResourceBridgeWhitelistConfig + | s0_eternum_ResourceCost + | s0_eternum_ResourceTransferLock + | s0_eternum_Season + | s0_eternum_SeasonAddressesConfig + | s0_eternum_SeasonBridgeConfig + | s0_eternum_SettleRealmData + | s0_eternum_SettlementConfig + | s0_eternum_SpeedConfig + | s0_eternum_Stamina + | s0_eternum_StaminaConfig + | s0_eternum_StaminaRefillConfig + | s0_eternum_Status + | s0_eternum_Structure + | s0_eternum_StructureCount + | s0_eternum_SwapEvent + | s0_eternum_TickConfig + | s0_eternum_Tile + | s0_eternum_Trade + | s0_eternum_Transfer + | s0_eternum_Travel + | s0_eternum_TravelFoodCostConfig + | s0_eternum_TravelStaminaCostConfig + | s0_eternum_TroopConfig + | s0_eternum_TrophyCreation + | s0_eternum_TrophyProgression + | s0_eternum_VRFConfig + | s0_eternum_Weight + | s0_eternum_WeightConfig + | s0_eternum_WorldConfig enum OrderDirection { ASC @@ -210,134 +326,1233 @@ type World__PageInfo { } type World__Query { - entities(after: Cursor, before: Cursor, first: Int, keys: [String], last: Int, limit: Int, offset: Int): World__EntityConnection + entities( + after: Cursor + before: Cursor + first: Int + keys: [String] + last: Int + limit: Int + offset: Int + ): World__EntityConnection entity(id: ID!): World__Entity! eventMessage(id: ID!): World__EventMessage! - eventMessages(after: Cursor, before: Cursor, first: Int, keys: [String], last: Int, limit: Int, offset: Int): World__EventMessageConnection - events(after: Cursor, before: Cursor, first: Int, keys: [String], last: Int, limit: Int, offset: Int): World__EventConnection + eventMessages( + after: Cursor + before: Cursor + first: Int + keys: [String] + last: Int + limit: Int + offset: Int + ): World__EventMessageConnection + events( + after: Cursor + before: Cursor + first: Int + keys: [String] + last: Int + limit: Int + offset: Int + ): World__EventConnection metadatas(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int): World__MetadataConnection model(id: ID!): World__Model! - models(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: World__ModelOrder): World__ModelConnection - s0EternumAcceptOrderModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_AcceptOrderOrder, where: s0_eternum_AcceptOrderWhereInput): s0_eternum_AcceptOrderConnection - s0EternumAcceptPartialOrderModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_AcceptPartialOrderOrder, where: s0_eternum_AcceptPartialOrderWhereInput): s0_eternum_AcceptPartialOrderConnection - s0EternumAddressNameModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_AddressNameOrder, where: s0_eternum_AddressNameWhereInput): s0_eternum_AddressNameConnection - s0EternumArmyModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ArmyOrder, where: s0_eternum_ArmyWhereInput): s0_eternum_ArmyConnection - s0EternumArrivalTimeModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ArrivalTimeOrder, where: s0_eternum_ArrivalTimeWhereInput): s0_eternum_ArrivalTimeConnection - s0EternumBankConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BankConfigOrder, where: s0_eternum_BankConfigWhereInput): s0_eternum_BankConfigConnection - s0EternumBankModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BankOrder, where: s0_eternum_BankWhereInput): s0_eternum_BankConnection - s0EternumBattleClaimDataModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BattleClaimDataOrder, where: s0_eternum_BattleClaimDataWhereInput): s0_eternum_BattleClaimDataConnection - s0EternumBattleConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BattleConfigOrder, where: s0_eternum_BattleConfigWhereInput): s0_eternum_BattleConfigConnection - s0EternumBattleJoinDataModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BattleJoinDataOrder, where: s0_eternum_BattleJoinDataWhereInput): s0_eternum_BattleJoinDataConnection - s0EternumBattleLeaveDataModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BattleLeaveDataOrder, where: s0_eternum_BattleLeaveDataWhereInput): s0_eternum_BattleLeaveDataConnection - s0EternumBattleModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BattleOrder, where: s0_eternum_BattleWhereInput): s0_eternum_BattleConnection - s0EternumBattlePillageDataModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BattlePillageDataOrder, where: s0_eternum_BattlePillageDataWhereInput): s0_eternum_BattlePillageDataConnection - s0EternumBattleStartDataModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BattleStartDataOrder, where: s0_eternum_BattleStartDataWhereInput): s0_eternum_BattleStartDataConnection - s0EternumBuildingCategoryPopConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BuildingCategoryPopConfigOrder, where: s0_eternum_BuildingCategoryPopConfigWhereInput): s0_eternum_BuildingCategoryPopConfigConnection - s0EternumBuildingConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BuildingConfigOrder, where: s0_eternum_BuildingConfigWhereInput): s0_eternum_BuildingConfigConnection - s0EternumBuildingGeneralConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BuildingGeneralConfigOrder, where: s0_eternum_BuildingGeneralConfigWhereInput): s0_eternum_BuildingGeneralConfigConnection - s0EternumBuildingModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BuildingOrder, where: s0_eternum_BuildingWhereInput): s0_eternum_BuildingConnection - s0EternumBuildingQuantityv2Models(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BuildingQuantityv2Order, where: s0_eternum_BuildingQuantityv2WhereInput): s0_eternum_BuildingQuantityv2Connection - s0EternumBurnDonkeyModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_BurnDonkeyOrder, where: s0_eternum_BurnDonkeyWhereInput): s0_eternum_BurnDonkeyConnection - s0EternumCancelOrderModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_CancelOrderOrder, where: s0_eternum_CancelOrderWhereInput): s0_eternum_CancelOrderConnection - s0EternumCapacityCategoryModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_CapacityCategoryOrder, where: s0_eternum_CapacityCategoryWhereInput): s0_eternum_CapacityCategoryConnection - s0EternumCapacityConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_CapacityConfigOrder, where: s0_eternum_CapacityConfigWhereInput): s0_eternum_CapacityConfigConnection - s0EternumContributionModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ContributionOrder, where: s0_eternum_ContributionWhereInput): s0_eternum_ContributionConnection - s0EternumCreateGuildModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_CreateGuildOrder, where: s0_eternum_CreateGuildWhereInput): s0_eternum_CreateGuildConnection - s0EternumCreateOrderModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_CreateOrderOrder, where: s0_eternum_CreateOrderWhereInput): s0_eternum_CreateOrderConnection - s0EternumDetachedResourceModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_DetachedResourceOrder, where: s0_eternum_DetachedResourceWhereInput): s0_eternum_DetachedResourceConnection - s0EternumEntityNameModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_EntityNameOrder, where: s0_eternum_EntityNameWhereInput): s0_eternum_EntityNameConnection - s0EternumEntityOwnerModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_EntityOwnerOrder, where: s0_eternum_EntityOwnerWhereInput): s0_eternum_EntityOwnerConnection - s0EternumEpochModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_EpochOrder, where: s0_eternum_EpochWhereInput): s0_eternum_EpochConnection - s0EternumFragmentMineDiscoveredModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_FragmentMineDiscoveredOrder, where: s0_eternum_FragmentMineDiscoveredWhereInput): s0_eternum_FragmentMineDiscoveredConnection - s0EternumGameEndedModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_GameEndedOrder, where: s0_eternum_GameEndedWhereInput): s0_eternum_GameEndedConnection - s0EternumGuildMemberModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_GuildMemberOrder, where: s0_eternum_GuildMemberWhereInput): s0_eternum_GuildMemberConnection - s0EternumGuildModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_GuildOrder, where: s0_eternum_GuildWhereInput): s0_eternum_GuildConnection - s0EternumGuildWhitelistModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_GuildWhitelistOrder, where: s0_eternum_GuildWhitelistWhereInput): s0_eternum_GuildWhitelistConnection - s0EternumHealthModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_HealthOrder, where: s0_eternum_HealthWhereInput): s0_eternum_HealthConnection - s0EternumHyperstructureCoOwnersChangeModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_HyperstructureCoOwnersChangeOrder, where: s0_eternum_HyperstructureCoOwnersChangeWhereInput): s0_eternum_HyperstructureCoOwnersChangeConnection - s0EternumHyperstructureConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_HyperstructureConfigOrder, where: s0_eternum_HyperstructureConfigWhereInput): s0_eternum_HyperstructureConfigConnection - s0EternumHyperstructureContributionModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_HyperstructureContributionOrder, where: s0_eternum_HyperstructureContributionWhereInput): s0_eternum_HyperstructureContributionConnection - s0EternumHyperstructureFinishedModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_HyperstructureFinishedOrder, where: s0_eternum_HyperstructureFinishedWhereInput): s0_eternum_HyperstructureFinishedConnection - s0EternumHyperstructureModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_HyperstructureOrder, where: s0_eternum_HyperstructureWhereInput): s0_eternum_HyperstructureConnection - s0EternumHyperstructureResourceConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_HyperstructureResourceConfigOrder, where: s0_eternum_HyperstructureResourceConfigWhereInput): s0_eternum_HyperstructureResourceConfigConnection - s0EternumHyperstructureStartedModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_HyperstructureStartedOrder, where: s0_eternum_HyperstructureStartedWhereInput): s0_eternum_HyperstructureStartedConnection - s0EternumJoinGuildModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_JoinGuildOrder, where: s0_eternum_JoinGuildWhereInput): s0_eternum_JoinGuildConnection - s0EternumLeaderboardEntryModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_LeaderboardEntryOrder, where: s0_eternum_LeaderboardEntryWhereInput): s0_eternum_LeaderboardEntryConnection - s0EternumLeaderboardModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_LeaderboardOrder, where: s0_eternum_LeaderboardWhereInput): s0_eternum_LeaderboardConnection - s0EternumLeaderboardRegisterContributionModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_LeaderboardRegisterContributionOrder, where: s0_eternum_LeaderboardRegisterContributionWhereInput): s0_eternum_LeaderboardRegisterContributionConnection - s0EternumLeaderboardRegisterShareModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_LeaderboardRegisterShareOrder, where: s0_eternum_LeaderboardRegisterShareWhereInput): s0_eternum_LeaderboardRegisterShareConnection - s0EternumLeaderboardRegisteredModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_LeaderboardRegisteredOrder, where: s0_eternum_LeaderboardRegisteredWhereInput): s0_eternum_LeaderboardRegisteredConnection - s0EternumLeaderboardRewardClaimedModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_LeaderboardRewardClaimedOrder, where: s0_eternum_LeaderboardRewardClaimedWhereInput): s0_eternum_LeaderboardRewardClaimedConnection - s0EternumLevelingConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_LevelingConfigOrder, where: s0_eternum_LevelingConfigWhereInput): s0_eternum_LevelingConfigConnection - s0EternumLiquidityEventModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_LiquidityEventOrder, where: s0_eternum_LiquidityEventWhereInput): s0_eternum_LiquidityEventConnection - s0EternumLiquidityModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_LiquidityOrder, where: s0_eternum_LiquidityWhereInput): s0_eternum_LiquidityConnection - s0EternumMapConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_MapConfigOrder, where: s0_eternum_MapConfigWhereInput): s0_eternum_MapConfigConnection - s0EternumMapExploredModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_MapExploredOrder, where: s0_eternum_MapExploredWhereInput): s0_eternum_MapExploredConnection - s0EternumMarketModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_MarketOrder, where: s0_eternum_MarketWhereInput): s0_eternum_MarketConnection - s0EternumMercenariesConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_MercenariesConfigOrder, where: s0_eternum_MercenariesConfigWhereInput): s0_eternum_MercenariesConfigConnection - s0EternumMessageModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_MessageOrder, where: s0_eternum_MessageWhereInput): s0_eternum_MessageConnection - s0EternumMovableModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_MovableOrder, where: s0_eternum_MovableWhereInput): s0_eternum_MovableConnection - s0EternumOrdersModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_OrdersOrder, where: s0_eternum_OrdersWhereInput): s0_eternum_OrdersConnection - s0EternumOwnedResourcesTrackerModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_OwnedResourcesTrackerOrder, where: s0_eternum_OwnedResourcesTrackerWhereInput): s0_eternum_OwnedResourcesTrackerConnection - s0EternumOwnerModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_OwnerOrder, where: s0_eternum_OwnerWhereInput): s0_eternum_OwnerConnection - s0EternumPopulationConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_PopulationConfigOrder, where: s0_eternum_PopulationConfigWhereInput): s0_eternum_PopulationConfigConnection - s0EternumPopulationModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_PopulationOrder, where: s0_eternum_PopulationWhereInput): s0_eternum_PopulationConnection - s0EternumPositionModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_PositionOrder, where: s0_eternum_PositionWhereInput): s0_eternum_PositionConnection - s0EternumProductionConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ProductionConfigOrder, where: s0_eternum_ProductionConfigWhereInput): s0_eternum_ProductionConfigConnection - s0EternumProductionDeadlineModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ProductionDeadlineOrder, where: s0_eternum_ProductionDeadlineWhereInput): s0_eternum_ProductionDeadlineConnection - s0EternumProductionInputModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ProductionInputOrder, where: s0_eternum_ProductionInputWhereInput): s0_eternum_ProductionInputConnection - s0EternumProductionModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ProductionOrder, where: s0_eternum_ProductionWhereInput): s0_eternum_ProductionConnection - s0EternumProductionOutputModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ProductionOutputOrder, where: s0_eternum_ProductionOutputWhereInput): s0_eternum_ProductionOutputConnection - s0EternumProgressModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ProgressOrder, where: s0_eternum_ProgressWhereInput): s0_eternum_ProgressConnection - s0EternumProtecteeModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ProtecteeOrder, where: s0_eternum_ProtecteeWhereInput): s0_eternum_ProtecteeConnection - s0EternumProtectorModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ProtectorOrder, where: s0_eternum_ProtectorWhereInput): s0_eternum_ProtectorConnection - s0EternumQuantityModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_QuantityOrder, where: s0_eternum_QuantityWhereInput): s0_eternum_QuantityConnection - s0EternumQuantityTrackerModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_QuantityTrackerOrder, where: s0_eternum_QuantityTrackerWhereInput): s0_eternum_QuantityTrackerConnection - s0EternumQuestBonusModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_QuestBonusOrder, where: s0_eternum_QuestBonusWhereInput): s0_eternum_QuestBonusConnection - s0EternumQuestConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_QuestConfigOrder, where: s0_eternum_QuestConfigWhereInput): s0_eternum_QuestConfigConnection - s0EternumQuestModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_QuestOrder, where: s0_eternum_QuestWhereInput): s0_eternum_QuestConnection - s0EternumQuestRewardConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_QuestRewardConfigOrder, where: s0_eternum_QuestRewardConfigWhereInput): s0_eternum_QuestRewardConfigConnection - s0EternumRealmLevelConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_RealmLevelConfigOrder, where: s0_eternum_RealmLevelConfigWhereInput): s0_eternum_RealmLevelConfigConnection - s0EternumRealmMaxLevelConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_RealmMaxLevelConfigOrder, where: s0_eternum_RealmMaxLevelConfigWhereInput): s0_eternum_RealmMaxLevelConfigConnection - s0EternumRealmModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_RealmOrder, where: s0_eternum_RealmWhereInput): s0_eternum_RealmConnection - s0EternumResourceAllowanceModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ResourceAllowanceOrder, where: s0_eternum_ResourceAllowanceWhereInput): s0_eternum_ResourceAllowanceConnection - s0EternumResourceBridgeConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ResourceBridgeConfigOrder, where: s0_eternum_ResourceBridgeConfigWhereInput): s0_eternum_ResourceBridgeConfigConnection - s0EternumResourceBridgeFeeSplitConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ResourceBridgeFeeSplitConfigOrder, where: s0_eternum_ResourceBridgeFeeSplitConfigWhereInput): s0_eternum_ResourceBridgeFeeSplitConfigConnection - s0EternumResourceBridgeWhitelistConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ResourceBridgeWhitelistConfigOrder, where: s0_eternum_ResourceBridgeWhitelistConfigWhereInput): s0_eternum_ResourceBridgeWhitelistConfigConnection - s0EternumResourceCostModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ResourceCostOrder, where: s0_eternum_ResourceCostWhereInput): s0_eternum_ResourceCostConnection - s0EternumResourceModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ResourceOrder, where: s0_eternum_ResourceWhereInput): s0_eternum_ResourceConnection - s0EternumResourceTransferLockModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_ResourceTransferLockOrder, where: s0_eternum_ResourceTransferLockWhereInput): s0_eternum_ResourceTransferLockConnection - s0EternumSeasonAddressesConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_SeasonAddressesConfigOrder, where: s0_eternum_SeasonAddressesConfigWhereInput): s0_eternum_SeasonAddressesConfigConnection - s0EternumSeasonBridgeConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_SeasonBridgeConfigOrder, where: s0_eternum_SeasonBridgeConfigWhereInput): s0_eternum_SeasonBridgeConfigConnection - s0EternumSeasonModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_SeasonOrder, where: s0_eternum_SeasonWhereInput): s0_eternum_SeasonConnection - s0EternumSettleRealmDataModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_SettleRealmDataOrder, where: s0_eternum_SettleRealmDataWhereInput): s0_eternum_SettleRealmDataConnection - s0EternumSettlementConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_SettlementConfigOrder, where: s0_eternum_SettlementConfigWhereInput): s0_eternum_SettlementConfigConnection - s0EternumSpeedConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_SpeedConfigOrder, where: s0_eternum_SpeedConfigWhereInput): s0_eternum_SpeedConfigConnection - s0EternumStaminaConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_StaminaConfigOrder, where: s0_eternum_StaminaConfigWhereInput): s0_eternum_StaminaConfigConnection - s0EternumStaminaModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_StaminaOrder, where: s0_eternum_StaminaWhereInput): s0_eternum_StaminaConnection - s0EternumStaminaRefillConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_StaminaRefillConfigOrder, where: s0_eternum_StaminaRefillConfigWhereInput): s0_eternum_StaminaRefillConfigConnection - s0EternumStatusModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_StatusOrder, where: s0_eternum_StatusWhereInput): s0_eternum_StatusConnection - s0EternumStructureCountModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_StructureCountOrder, where: s0_eternum_StructureCountWhereInput): s0_eternum_StructureCountConnection - s0EternumStructureModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_StructureOrder, where: s0_eternum_StructureWhereInput): s0_eternum_StructureConnection - s0EternumSwapEventModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_SwapEventOrder, where: s0_eternum_SwapEventWhereInput): s0_eternum_SwapEventConnection - s0EternumTickConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_TickConfigOrder, where: s0_eternum_TickConfigWhereInput): s0_eternum_TickConfigConnection - s0EternumTileModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_TileOrder, where: s0_eternum_TileWhereInput): s0_eternum_TileConnection - s0EternumTradeModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_TradeOrder, where: s0_eternum_TradeWhereInput): s0_eternum_TradeConnection - s0EternumTransferModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_TransferOrder, where: s0_eternum_TransferWhereInput): s0_eternum_TransferConnection - s0EternumTravelFoodCostConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_TravelFoodCostConfigOrder, where: s0_eternum_TravelFoodCostConfigWhereInput): s0_eternum_TravelFoodCostConfigConnection - s0EternumTravelModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_TravelOrder, where: s0_eternum_TravelWhereInput): s0_eternum_TravelConnection - s0EternumTravelStaminaCostConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_TravelStaminaCostConfigOrder, where: s0_eternum_TravelStaminaCostConfigWhereInput): s0_eternum_TravelStaminaCostConfigConnection - s0EternumTroopConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_TroopConfigOrder, where: s0_eternum_TroopConfigWhereInput): s0_eternum_TroopConfigConnection - s0EternumTrophyCreationModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_TrophyCreationOrder, where: s0_eternum_TrophyCreationWhereInput): s0_eternum_TrophyCreationConnection - s0EternumTrophyProgressionModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_TrophyProgressionOrder, where: s0_eternum_TrophyProgressionWhereInput): s0_eternum_TrophyProgressionConnection - s0EternumVrfConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_VRFConfigOrder, where: s0_eternum_VRFConfigWhereInput): s0_eternum_VRFConfigConnection - s0EternumWeightConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_WeightConfigOrder, where: s0_eternum_WeightConfigWhereInput): s0_eternum_WeightConfigConnection - s0EternumWeightModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_WeightOrder, where: s0_eternum_WeightWhereInput): s0_eternum_WeightConnection - s0EternumWorldConfigModels(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int, order: s0_eternum_WorldConfigOrder, where: s0_eternum_WorldConfigWhereInput): s0_eternum_WorldConfigConnection - tokenBalances(accountAddress: String!, after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int): Token__BalanceConnection - tokenTransfers(accountAddress: String!, after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int): Token__TransferConnection + models( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: World__ModelOrder + ): World__ModelConnection + s0EternumAcceptOrderModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_AcceptOrderOrder + where: s0_eternum_AcceptOrderWhereInput + ): s0_eternum_AcceptOrderConnection + s0EternumAcceptPartialOrderModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_AcceptPartialOrderOrder + where: s0_eternum_AcceptPartialOrderWhereInput + ): s0_eternum_AcceptPartialOrderConnection + s0EternumAddressNameModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_AddressNameOrder + where: s0_eternum_AddressNameWhereInput + ): s0_eternum_AddressNameConnection + s0EternumArmyModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ArmyOrder + where: s0_eternum_ArmyWhereInput + ): s0_eternum_ArmyConnection + s0EternumArrivalTimeModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ArrivalTimeOrder + where: s0_eternum_ArrivalTimeWhereInput + ): s0_eternum_ArrivalTimeConnection + s0EternumBankConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BankConfigOrder + where: s0_eternum_BankConfigWhereInput + ): s0_eternum_BankConfigConnection + s0EternumBankModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BankOrder + where: s0_eternum_BankWhereInput + ): s0_eternum_BankConnection + s0EternumBattleClaimDataModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BattleClaimDataOrder + where: s0_eternum_BattleClaimDataWhereInput + ): s0_eternum_BattleClaimDataConnection + s0EternumBattleConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BattleConfigOrder + where: s0_eternum_BattleConfigWhereInput + ): s0_eternum_BattleConfigConnection + s0EternumBattleJoinDataModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BattleJoinDataOrder + where: s0_eternum_BattleJoinDataWhereInput + ): s0_eternum_BattleJoinDataConnection + s0EternumBattleLeaveDataModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BattleLeaveDataOrder + where: s0_eternum_BattleLeaveDataWhereInput + ): s0_eternum_BattleLeaveDataConnection + s0EternumBattleModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BattleOrder + where: s0_eternum_BattleWhereInput + ): s0_eternum_BattleConnection + s0EternumBattlePillageDataModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BattlePillageDataOrder + where: s0_eternum_BattlePillageDataWhereInput + ): s0_eternum_BattlePillageDataConnection + s0EternumBattleStartDataModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BattleStartDataOrder + where: s0_eternum_BattleStartDataWhereInput + ): s0_eternum_BattleStartDataConnection + s0EternumBuildingCategoryPopConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BuildingCategoryPopConfigOrder + where: s0_eternum_BuildingCategoryPopConfigWhereInput + ): s0_eternum_BuildingCategoryPopConfigConnection + s0EternumBuildingConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BuildingConfigOrder + where: s0_eternum_BuildingConfigWhereInput + ): s0_eternum_BuildingConfigConnection + s0EternumBuildingGeneralConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BuildingGeneralConfigOrder + where: s0_eternum_BuildingGeneralConfigWhereInput + ): s0_eternum_BuildingGeneralConfigConnection + s0EternumBuildingModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BuildingOrder + where: s0_eternum_BuildingWhereInput + ): s0_eternum_BuildingConnection + s0EternumBuildingQuantityv2Models( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BuildingQuantityv2Order + where: s0_eternum_BuildingQuantityv2WhereInput + ): s0_eternum_BuildingQuantityv2Connection + s0EternumBurnDonkeyModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_BurnDonkeyOrder + where: s0_eternum_BurnDonkeyWhereInput + ): s0_eternum_BurnDonkeyConnection + s0EternumCancelOrderModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_CancelOrderOrder + where: s0_eternum_CancelOrderWhereInput + ): s0_eternum_CancelOrderConnection + s0EternumCapacityCategoryModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_CapacityCategoryOrder + where: s0_eternum_CapacityCategoryWhereInput + ): s0_eternum_CapacityCategoryConnection + s0EternumCapacityConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_CapacityConfigOrder + where: s0_eternum_CapacityConfigWhereInput + ): s0_eternum_CapacityConfigConnection + s0EternumContributionModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ContributionOrder + where: s0_eternum_ContributionWhereInput + ): s0_eternum_ContributionConnection + s0EternumCreateGuildModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_CreateGuildOrder + where: s0_eternum_CreateGuildWhereInput + ): s0_eternum_CreateGuildConnection + s0EternumCreateOrderModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_CreateOrderOrder + where: s0_eternum_CreateOrderWhereInput + ): s0_eternum_CreateOrderConnection + s0EternumDetachedResourceModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_DetachedResourceOrder + where: s0_eternum_DetachedResourceWhereInput + ): s0_eternum_DetachedResourceConnection + s0EternumEntityNameModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_EntityNameOrder + where: s0_eternum_EntityNameWhereInput + ): s0_eternum_EntityNameConnection + s0EternumEntityOwnerModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_EntityOwnerOrder + where: s0_eternum_EntityOwnerWhereInput + ): s0_eternum_EntityOwnerConnection + s0EternumEpochModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_EpochOrder + where: s0_eternum_EpochWhereInput + ): s0_eternum_EpochConnection + s0EternumFragmentMineDiscoveredModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_FragmentMineDiscoveredOrder + where: s0_eternum_FragmentMineDiscoveredWhereInput + ): s0_eternum_FragmentMineDiscoveredConnection + s0EternumGameEndedModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_GameEndedOrder + where: s0_eternum_GameEndedWhereInput + ): s0_eternum_GameEndedConnection + s0EternumGuildMemberModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_GuildMemberOrder + where: s0_eternum_GuildMemberWhereInput + ): s0_eternum_GuildMemberConnection + s0EternumGuildModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_GuildOrder + where: s0_eternum_GuildWhereInput + ): s0_eternum_GuildConnection + s0EternumGuildWhitelistModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_GuildWhitelistOrder + where: s0_eternum_GuildWhitelistWhereInput + ): s0_eternum_GuildWhitelistConnection + s0EternumHealthModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_HealthOrder + where: s0_eternum_HealthWhereInput + ): s0_eternum_HealthConnection + s0EternumHyperstructureCoOwnersChangeModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_HyperstructureCoOwnersChangeOrder + where: s0_eternum_HyperstructureCoOwnersChangeWhereInput + ): s0_eternum_HyperstructureCoOwnersChangeConnection + s0EternumHyperstructureConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_HyperstructureConfigOrder + where: s0_eternum_HyperstructureConfigWhereInput + ): s0_eternum_HyperstructureConfigConnection + s0EternumHyperstructureContributionModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_HyperstructureContributionOrder + where: s0_eternum_HyperstructureContributionWhereInput + ): s0_eternum_HyperstructureContributionConnection + s0EternumHyperstructureFinishedModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_HyperstructureFinishedOrder + where: s0_eternum_HyperstructureFinishedWhereInput + ): s0_eternum_HyperstructureFinishedConnection + s0EternumHyperstructureModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_HyperstructureOrder + where: s0_eternum_HyperstructureWhereInput + ): s0_eternum_HyperstructureConnection + s0EternumHyperstructureResourceConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_HyperstructureResourceConfigOrder + where: s0_eternum_HyperstructureResourceConfigWhereInput + ): s0_eternum_HyperstructureResourceConfigConnection + s0EternumHyperstructureStartedModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_HyperstructureStartedOrder + where: s0_eternum_HyperstructureStartedWhereInput + ): s0_eternum_HyperstructureStartedConnection + s0EternumJoinGuildModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_JoinGuildOrder + where: s0_eternum_JoinGuildWhereInput + ): s0_eternum_JoinGuildConnection + s0EternumLeaderboardEntryModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_LeaderboardEntryOrder + where: s0_eternum_LeaderboardEntryWhereInput + ): s0_eternum_LeaderboardEntryConnection + s0EternumLeaderboardModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_LeaderboardOrder + where: s0_eternum_LeaderboardWhereInput + ): s0_eternum_LeaderboardConnection + s0EternumLeaderboardRegisterContributionModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_LeaderboardRegisterContributionOrder + where: s0_eternum_LeaderboardRegisterContributionWhereInput + ): s0_eternum_LeaderboardRegisterContributionConnection + s0EternumLeaderboardRegisterShareModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_LeaderboardRegisterShareOrder + where: s0_eternum_LeaderboardRegisterShareWhereInput + ): s0_eternum_LeaderboardRegisterShareConnection + s0EternumLeaderboardRegisteredModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_LeaderboardRegisteredOrder + where: s0_eternum_LeaderboardRegisteredWhereInput + ): s0_eternum_LeaderboardRegisteredConnection + s0EternumLeaderboardRewardClaimedModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_LeaderboardRewardClaimedOrder + where: s0_eternum_LeaderboardRewardClaimedWhereInput + ): s0_eternum_LeaderboardRewardClaimedConnection + s0EternumLevelingConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_LevelingConfigOrder + where: s0_eternum_LevelingConfigWhereInput + ): s0_eternum_LevelingConfigConnection + s0EternumLiquidityEventModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_LiquidityEventOrder + where: s0_eternum_LiquidityEventWhereInput + ): s0_eternum_LiquidityEventConnection + s0EternumLiquidityModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_LiquidityOrder + where: s0_eternum_LiquidityWhereInput + ): s0_eternum_LiquidityConnection + s0EternumMapConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_MapConfigOrder + where: s0_eternum_MapConfigWhereInput + ): s0_eternum_MapConfigConnection + s0EternumMapExploredModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_MapExploredOrder + where: s0_eternum_MapExploredWhereInput + ): s0_eternum_MapExploredConnection + s0EternumMarketModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_MarketOrder + where: s0_eternum_MarketWhereInput + ): s0_eternum_MarketConnection + s0EternumMercenariesConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_MercenariesConfigOrder + where: s0_eternum_MercenariesConfigWhereInput + ): s0_eternum_MercenariesConfigConnection + s0EternumMessageModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_MessageOrder + where: s0_eternum_MessageWhereInput + ): s0_eternum_MessageConnection + s0EternumMovableModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_MovableOrder + where: s0_eternum_MovableWhereInput + ): s0_eternum_MovableConnection + s0EternumOrdersModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_OrdersOrder + where: s0_eternum_OrdersWhereInput + ): s0_eternum_OrdersConnection + s0EternumOwnedResourcesTrackerModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_OwnedResourcesTrackerOrder + where: s0_eternum_OwnedResourcesTrackerWhereInput + ): s0_eternum_OwnedResourcesTrackerConnection + s0EternumOwnerModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_OwnerOrder + where: s0_eternum_OwnerWhereInput + ): s0_eternum_OwnerConnection + s0EternumPopulationConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_PopulationConfigOrder + where: s0_eternum_PopulationConfigWhereInput + ): s0_eternum_PopulationConfigConnection + s0EternumPopulationModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_PopulationOrder + where: s0_eternum_PopulationWhereInput + ): s0_eternum_PopulationConnection + s0EternumPositionModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_PositionOrder + where: s0_eternum_PositionWhereInput + ): s0_eternum_PositionConnection + s0EternumProductionConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ProductionConfigOrder + where: s0_eternum_ProductionConfigWhereInput + ): s0_eternum_ProductionConfigConnection + s0EternumProductionDeadlineModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ProductionDeadlineOrder + where: s0_eternum_ProductionDeadlineWhereInput + ): s0_eternum_ProductionDeadlineConnection + s0EternumProductionInputModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ProductionInputOrder + where: s0_eternum_ProductionInputWhereInput + ): s0_eternum_ProductionInputConnection + s0EternumProductionModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ProductionOrder + where: s0_eternum_ProductionWhereInput + ): s0_eternum_ProductionConnection + s0EternumProductionOutputModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ProductionOutputOrder + where: s0_eternum_ProductionOutputWhereInput + ): s0_eternum_ProductionOutputConnection + s0EternumProgressModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ProgressOrder + where: s0_eternum_ProgressWhereInput + ): s0_eternum_ProgressConnection + s0EternumProtecteeModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ProtecteeOrder + where: s0_eternum_ProtecteeWhereInput + ): s0_eternum_ProtecteeConnection + s0EternumProtectorModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ProtectorOrder + where: s0_eternum_ProtectorWhereInput + ): s0_eternum_ProtectorConnection + s0EternumQuantityModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_QuantityOrder + where: s0_eternum_QuantityWhereInput + ): s0_eternum_QuantityConnection + s0EternumQuantityTrackerModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_QuantityTrackerOrder + where: s0_eternum_QuantityTrackerWhereInput + ): s0_eternum_QuantityTrackerConnection + s0EternumQuestBonusModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_QuestBonusOrder + where: s0_eternum_QuestBonusWhereInput + ): s0_eternum_QuestBonusConnection + s0EternumQuestConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_QuestConfigOrder + where: s0_eternum_QuestConfigWhereInput + ): s0_eternum_QuestConfigConnection + s0EternumQuestModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_QuestOrder + where: s0_eternum_QuestWhereInput + ): s0_eternum_QuestConnection + s0EternumQuestRewardConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_QuestRewardConfigOrder + where: s0_eternum_QuestRewardConfigWhereInput + ): s0_eternum_QuestRewardConfigConnection + s0EternumRealmLevelConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_RealmLevelConfigOrder + where: s0_eternum_RealmLevelConfigWhereInput + ): s0_eternum_RealmLevelConfigConnection + s0EternumRealmMaxLevelConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_RealmMaxLevelConfigOrder + where: s0_eternum_RealmMaxLevelConfigWhereInput + ): s0_eternum_RealmMaxLevelConfigConnection + s0EternumRealmModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_RealmOrder + where: s0_eternum_RealmWhereInput + ): s0_eternum_RealmConnection + s0EternumResourceAllowanceModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ResourceAllowanceOrder + where: s0_eternum_ResourceAllowanceWhereInput + ): s0_eternum_ResourceAllowanceConnection + s0EternumResourceBridgeConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ResourceBridgeConfigOrder + where: s0_eternum_ResourceBridgeConfigWhereInput + ): s0_eternum_ResourceBridgeConfigConnection + s0EternumResourceBridgeFeeSplitConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ResourceBridgeFeeSplitConfigOrder + where: s0_eternum_ResourceBridgeFeeSplitConfigWhereInput + ): s0_eternum_ResourceBridgeFeeSplitConfigConnection + s0EternumResourceBridgeWhitelistConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ResourceBridgeWhitelistConfigOrder + where: s0_eternum_ResourceBridgeWhitelistConfigWhereInput + ): s0_eternum_ResourceBridgeWhitelistConfigConnection + s0EternumResourceCostModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ResourceCostOrder + where: s0_eternum_ResourceCostWhereInput + ): s0_eternum_ResourceCostConnection + s0EternumResourceModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ResourceOrder + where: s0_eternum_ResourceWhereInput + ): s0_eternum_ResourceConnection + s0EternumResourceTransferLockModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_ResourceTransferLockOrder + where: s0_eternum_ResourceTransferLockWhereInput + ): s0_eternum_ResourceTransferLockConnection + s0EternumSeasonAddressesConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_SeasonAddressesConfigOrder + where: s0_eternum_SeasonAddressesConfigWhereInput + ): s0_eternum_SeasonAddressesConfigConnection + s0EternumSeasonBridgeConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_SeasonBridgeConfigOrder + where: s0_eternum_SeasonBridgeConfigWhereInput + ): s0_eternum_SeasonBridgeConfigConnection + s0EternumSeasonModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_SeasonOrder + where: s0_eternum_SeasonWhereInput + ): s0_eternum_SeasonConnection + s0EternumSettleRealmDataModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_SettleRealmDataOrder + where: s0_eternum_SettleRealmDataWhereInput + ): s0_eternum_SettleRealmDataConnection + s0EternumSettlementConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_SettlementConfigOrder + where: s0_eternum_SettlementConfigWhereInput + ): s0_eternum_SettlementConfigConnection + s0EternumSpeedConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_SpeedConfigOrder + where: s0_eternum_SpeedConfigWhereInput + ): s0_eternum_SpeedConfigConnection + s0EternumStaminaConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_StaminaConfigOrder + where: s0_eternum_StaminaConfigWhereInput + ): s0_eternum_StaminaConfigConnection + s0EternumStaminaModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_StaminaOrder + where: s0_eternum_StaminaWhereInput + ): s0_eternum_StaminaConnection + s0EternumStaminaRefillConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_StaminaRefillConfigOrder + where: s0_eternum_StaminaRefillConfigWhereInput + ): s0_eternum_StaminaRefillConfigConnection + s0EternumStatusModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_StatusOrder + where: s0_eternum_StatusWhereInput + ): s0_eternum_StatusConnection + s0EternumStructureCountModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_StructureCountOrder + where: s0_eternum_StructureCountWhereInput + ): s0_eternum_StructureCountConnection + s0EternumStructureModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_StructureOrder + where: s0_eternum_StructureWhereInput + ): s0_eternum_StructureConnection + s0EternumSwapEventModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_SwapEventOrder + where: s0_eternum_SwapEventWhereInput + ): s0_eternum_SwapEventConnection + s0EternumTickConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_TickConfigOrder + where: s0_eternum_TickConfigWhereInput + ): s0_eternum_TickConfigConnection + s0EternumTileModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_TileOrder + where: s0_eternum_TileWhereInput + ): s0_eternum_TileConnection + s0EternumTradeModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_TradeOrder + where: s0_eternum_TradeWhereInput + ): s0_eternum_TradeConnection + s0EternumTransferModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_TransferOrder + where: s0_eternum_TransferWhereInput + ): s0_eternum_TransferConnection + s0EternumTravelFoodCostConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_TravelFoodCostConfigOrder + where: s0_eternum_TravelFoodCostConfigWhereInput + ): s0_eternum_TravelFoodCostConfigConnection + s0EternumTravelModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_TravelOrder + where: s0_eternum_TravelWhereInput + ): s0_eternum_TravelConnection + s0EternumTravelStaminaCostConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_TravelStaminaCostConfigOrder + where: s0_eternum_TravelStaminaCostConfigWhereInput + ): s0_eternum_TravelStaminaCostConfigConnection + s0EternumTroopConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_TroopConfigOrder + where: s0_eternum_TroopConfigWhereInput + ): s0_eternum_TroopConfigConnection + s0EternumTrophyCreationModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_TrophyCreationOrder + where: s0_eternum_TrophyCreationWhereInput + ): s0_eternum_TrophyCreationConnection + s0EternumTrophyProgressionModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_TrophyProgressionOrder + where: s0_eternum_TrophyProgressionWhereInput + ): s0_eternum_TrophyProgressionConnection + s0EternumVrfConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_VRFConfigOrder + where: s0_eternum_VRFConfigWhereInput + ): s0_eternum_VRFConfigConnection + s0EternumWeightConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_WeightConfigOrder + where: s0_eternum_WeightConfigWhereInput + ): s0_eternum_WeightConfigConnection + s0EternumWeightModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_WeightOrder + where: s0_eternum_WeightWhereInput + ): s0_eternum_WeightConnection + s0EternumWorldConfigModels( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + order: s0_eternum_WorldConfigOrder + where: s0_eternum_WorldConfigWhereInput + ): s0_eternum_WorldConfigConnection + tokenBalances( + accountAddress: String! + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + ): Token__BalanceConnection + tokenTransfers( + accountAddress: String! + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + ): Token__TransferConnection transaction(transactionHash: ID!): World__Transaction! - transactions(after: Cursor, before: Cursor, first: Int, last: Int, limit: Int, offset: Int): World__TransactionConnection + transactions( + after: Cursor + before: Cursor + first: Int + last: Int + limit: Int + offset: Int + ): World__TransactionConnection } type World__Social { @@ -10066,4 +11281,4 @@ scalar u64 scalar u128 -scalar u256 \ No newline at end of file +scalar u256 diff --git a/client/apps/landing/src/dojo/contractComponents.ts b/client/apps/landing/src/dojo/contractComponents.ts deleted file mode 100644 index e5c449866..000000000 --- a/client/apps/landing/src/dojo/contractComponents.ts +++ /dev/null @@ -1,2254 +0,0 @@ -/* Autogenerated file. Do not edit manually. */ - -import { defineComponent, Type as RecsType, type World } from "@dojoengine/recs"; - -type ContractComponents = ReturnType; - -export function defineContractComponents(world: World) { - return { - AddressName: (() => { - return defineComponent( - world, - { address: RecsType.BigInt, name: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "AddressName", - types: ["felt252", "felt252"], - customTypes: [], - }, - }, - ); - })(), - Army: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - troops: { knight_count: RecsType.BigInt, paladin_count: RecsType.BigInt, crossbowman_count: RecsType.BigInt }, - battle_id: RecsType.Number, - battle_side: RecsType.String, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Army", - types: ["u32", "u64", "u64", "u64", "u32", "enum"], - customTypes: ["Troops", "BattleSide"], - }, - }, - ); - })(), - ArrivalTime: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, arrives_at: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "ArrivalTime", - types: ["u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - Bank: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - owner_fee_num: RecsType.BigInt, - owner_fee_denom: RecsType.BigInt, - owner_bridge_fee_dpt_percent: RecsType.Number, - owner_bridge_fee_wtdr_percent: RecsType.Number, - exists: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Bank", - types: ["u32", "u128", "u128", "u16", "u16", "bool"], - customTypes: [], - }, - }, - ); - })(), - BankConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - lords_cost: RecsType.BigInt, - lp_fee_num: RecsType.BigInt, - lp_fee_denom: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BankConfig", - types: ["u32", "u128", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - Battle: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - attack_army: { - troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - battle_id: RecsType.Number, - battle_side: RecsType.String, - }, - attack_army_lifetime: { - troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - battle_id: RecsType.Number, - battle_side: RecsType.String, - }, - defence_army: { - troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - battle_id: RecsType.Number, - battle_side: RecsType.String, - }, - defence_army_lifetime: { - troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - battle_id: RecsType.Number, - battle_side: RecsType.String, - }, - attackers_resources_escrow_id: RecsType.Number, - defenders_resources_escrow_id: RecsType.Number, - attack_army_health: { current: RecsType.BigInt, lifetime: RecsType.BigInt }, - defence_army_health: { current: RecsType.BigInt, lifetime: RecsType.BigInt }, - attack_delta: RecsType.BigInt, - defence_delta: RecsType.BigInt, - last_updated: RecsType.BigInt, - duration_left: RecsType.BigInt, - start_at: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Battle", - types: [ - "u32", - "u64", - "u64", - "u64", - "u32", - "enum", - "u64", - "u64", - "u64", - "u32", - "enum", - "u64", - "u64", - "u64", - "u32", - "enum", - "u64", - "u64", - "u64", - "u32", - "enum", - "u32", - "u32", - "u128", - "u128", - "u128", - "u128", - "u64", - "u64", - "u64", - "u64", - "u64", - ], - customTypes: [ - "BattleArmy", - "Troops", - "BattleSide", - "BattleArmy", - "Troops", - "BattleSide", - "BattleArmy", - "Troops", - "BattleSide", - "BattleArmy", - "Troops", - "BattleSide", - "BattleHealth", - "BattleHealth", - ], - }, - }, - ); - })(), - BattleConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - regular_immunity_ticks: RecsType.Number, - hyperstructure_immunity_ticks: RecsType.Number, - battle_delay_seconds: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattleConfig", - types: ["u32", "u8", "u8", "u64"], - customTypes: [], - }, - }, - ); - })(), - Building: (() => { - return defineComponent( - world, - { - outer_col: RecsType.Number, - outer_row: RecsType.Number, - inner_col: RecsType.Number, - inner_row: RecsType.Number, - category: RecsType.String, - produced_resource_type: RecsType.Number, - bonus_percent: RecsType.Number, - entity_id: RecsType.Number, - outer_entity_id: RecsType.Number, - paused: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Building", - types: ["u32", "u32", "u32", "u32", "enum", "u8", "u32", "u32", "u32", "bool"], - customTypes: ["BuildingCategory"], - }, - }, - ); - })(), - BuildingCategoryPopConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - building_category: RecsType.String, - population: RecsType.Number, - capacity: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BuildingCategoryPopConfig", - types: ["u32", "enum", "u32", "u32"], - customTypes: ["BuildingCategory"], - }, - }, - ); - })(), - BuildingConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - category: RecsType.String, - resource_type: RecsType.Number, - resource_cost_id: RecsType.Number, - resource_cost_count: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BuildingConfig", - types: ["u32", "enum", "u8", "u32", "u32"], - customTypes: ["BuildingCategory"], - }, - }, - ); - })(), - BuildingGeneralConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - base_cost_percent_increase: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BuildingGeneralConfig", - types: ["u32", "u16"], - customTypes: [], - }, - }, - ); - })(), - BuildingQuantityv2: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, category: RecsType.String, value: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "BuildingQuantityv2", - types: ["u32", "enum", "u8"], - customTypes: ["BuildingCategory"], - }, - }, - ); - })(), - CapacityCategory: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, category: RecsType.String }, - { - metadata: { - namespace: "s0_eternum", - name: "CapacityCategory", - types: ["u32", "enum"], - customTypes: ["CapacityConfigCategory"], - }, - }, - ); - })(), - CapacityConfig: (() => { - return defineComponent( - world, - { - category: RecsType.String, - weight_gram: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "CapacityConfig", - types: ["enum", "u128"], - customTypes: ["CapacityConfigCategory"], - }, - }, - ); - })(), - Contribution: (() => { - return defineComponent( - world, - { - hyperstructure_entity_id: RecsType.Number, - player_address: RecsType.BigInt, - resource_type: RecsType.Number, - amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Contribution", - types: ["u32", "contractaddress", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - DetachedResource: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - index: RecsType.Number, - resource_type: RecsType.Number, - resource_amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "DetachedResource", - types: ["u32", "u32", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - EntityName: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, name: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "EntityName", - types: ["u32", "felt252"], - customTypes: [], - }, - }, - ); - })(), - EntityOwner: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, entity_owner_id: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "EntityOwner", - types: ["u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Epoch: (() => { - return defineComponent( - world, - { - hyperstructure_entity_id: RecsType.Number, - index: RecsType.Number, - start_timestamp: RecsType.BigInt, - owners: RecsType.BigIntArray, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Epoch", - types: ["u32", "u16", "u64", "array"], - customTypes: [], - }, - }, - ); - })(), - Guild: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, is_public: RecsType.Boolean, member_count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Guild", - types: ["u32", "bool", "u16"], - customTypes: [], - }, - }, - ); - })(), - GuildMember: (() => { - return defineComponent( - world, - { address: RecsType.BigInt, guild_entity_id: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "GuildMember", - types: ["contractaddress", "u32"], - customTypes: [], - }, - }, - ); - })(), - GuildWhitelist: (() => { - return defineComponent( - world, - { address: RecsType.BigInt, guild_entity_id: RecsType.Number, is_whitelisted: RecsType.Boolean }, - { - metadata: { - namespace: "s0_eternum", - name: "GuildWhitelist", - types: ["contractaddress", "u32", "bool"], - customTypes: [], - }, - }, - ); - })(), - Health: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, current: RecsType.BigInt, lifetime: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Health", - types: ["u32", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - Hyperstructure: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - current_epoch: RecsType.Number, - completed: RecsType.Boolean, - last_updated_by: RecsType.BigInt, - last_updated_timestamp: RecsType.Number, - access: RecsType.String, - randomness: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Hyperstructure", - types: ["u32", "u16", "bool", "contractaddress", "u64", "enum", "felt252"], - customTypes: ["Access"], - }, - }, - ); - })(), - HyperstructureConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - time_between_shares_change: RecsType.Number, - points_per_cycle: RecsType.BigInt, - points_for_win: RecsType.BigInt, - points_on_completion: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "HyperstructureConfig", - types: ["u32", "u64", "u128", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - HyperstructureResourceConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - resource_tier: RecsType.Number, - min_amount: RecsType.BigInt, - max_amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "HyperstructureResourceConfig", - types: ["u32", "u8", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - Leaderboard: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - registration_end_timestamp: RecsType.Number, - total_points: RecsType.BigInt, - total_price_pool: RecsType.OptionalBigInt, - distribution_started: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Leaderboard", - types: ["u32", "u64", "u128", "u256", "bool"], - customTypes: [], - }, - }, - ); - })(), - - LeaderboardEntry: (() => { - return defineComponent( - world, - { - address: RecsType.BigInt, - points: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LeaderboardEntry", - types: ["contractaddress", "u128"], - customTypes: [], - }, - }, - ); - })(), - - LeaderboardRewardClaimed: (() => { - return defineComponent( - world, - { - address: RecsType.BigInt, - claimed: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LeaderboardRewardClaimed", - types: ["contractaddress", "bool"], - customTypes: [], - }, - }, - ); - })(), - - LeaderboardRegistered: (() => { - return defineComponent( - world, - { - address: RecsType.BigInt, - registered: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LeaderboardRegistered", - types: ["contractaddress", "bool"], - customTypes: [], - }, - }, - ); - })(), - - LeaderboardRegisterContribution: (() => { - return defineComponent( - world, - { - address: RecsType.BigInt, - hyperstructure_entity_id: RecsType.Number, - registered: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LeaderboardRegisterContribution", - types: ["contractaddress", "u32", "bool"], - customTypes: [], - }, - }, - ); - })(), - - LeaderboardRegisterShare: (() => { - return defineComponent( - world, - { - address: RecsType.BigInt, - hyperstructure_entity_id: RecsType.Number, - registered: RecsType.Boolean, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LeaderboardRegisterShare", - types: ["contractaddress", "u32", "bool"], - customTypes: [], - }, - }, - ); - })(), - - Liquidity: (() => { - return defineComponent( - world, - { - bank_entity_id: RecsType.Number, - player: RecsType.BigInt, - resource_type: RecsType.Number, - shares: { mag: RecsType.BigInt, sign: RecsType.Boolean }, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Liquidity", - types: ["u32", "contractaddress", "u8", "u128", "bool"], - customTypes: ["Fixed"], - }, - }, - ); - })(), - - MapConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - reward_resource_amount: RecsType.BigInt, - shards_mines_fail_probability: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "MapConfig", - types: ["u32", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - Market: (() => { - return defineComponent( - world, - { - bank_entity_id: RecsType.Number, - resource_type: RecsType.Number, - lords_amount: RecsType.BigInt, - resource_amount: RecsType.BigInt, - total_shares: { mag: RecsType.BigInt, sign: RecsType.Boolean }, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Market", - types: ["u32", "u8", "u128", "u128", "u128", "bool"], - customTypes: ["Fixed"], - }, - }, - ); - })(), - MercenariesConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - troops: { knight_count: RecsType.BigInt, paladin_count: RecsType.BigInt, crossbowman_count: RecsType.BigInt }, - rewards: RecsType.StringArray, - }, - { - metadata: { - namespace: "s0_eternum", - name: "MercenariesConfig", - types: ["u32", "u64", "u64", "u64"], - customTypes: ["Troops"], - }, - }, - ); - })(), - Message: (() => { - return defineComponent( - world, - { - identity: RecsType.BigInt, - channel: RecsType.BigInt, - content: RecsType.String, - salt: RecsType.BigInt, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Message", - types: ["felt252", "felt252", "BytesArray", "felt252", "u64"], - customTypes: [], - }, - }, - ); - })(), - Movable: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - sec_per_km: RecsType.Number, - blocked: RecsType.Boolean, - round_trip: RecsType.Boolean, - start_coord_x: RecsType.Number, - start_coord_y: RecsType.Number, - intermediate_coord_x: RecsType.Number, - intermediate_coord_y: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Movable", - types: ["u32", "u16", "bool", "bool", "u32", "u32", "u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Orders: (() => { - return defineComponent( - world, - { order_id: RecsType.Number, hyperstructure_count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Orders", - types: ["u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - OwnedResourcesTracker: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, resource_types: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "OwnedResourcesTracker", - types: ["u32", "u256"], - customTypes: [], - }, - }, - ); - })(), - Owner: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, address: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Owner", - types: ["u32", "contractaddress"], - customTypes: [], - }, - }, - ); - })(), - Population: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, population: RecsType.Number, capacity: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Population", - types: ["u32", "u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - PopulationConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, base_population: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "PopulationConfig", - types: ["u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Position: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, x: RecsType.Number, y: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Position", - types: ["u32", "u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Production: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - resource_type: RecsType.Number, - building_count: RecsType.Number, - production_rate: RecsType.BigInt, - consumption_rate: RecsType.BigInt, - last_updated_tick: RecsType.BigInt, - input_finish_tick: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Production", - types: ["u32", "u8", "u8", "u128", "u128", "u64", "u64"], - customTypes: [], - }, - }, - ); - })(), - ProductionConfig: (() => { - return defineComponent( - world, - { - resource_type: RecsType.Number, - amount: RecsType.BigInt, - input_count: RecsType.BigInt, - output_count: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "ProductionConfig", - types: ["u8", "u128", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - ProductionDeadline: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, deadline_tick: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "ProductionDeadline", - types: ["u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - ProductionInput: (() => { - return defineComponent( - world, - { - output_resource_type: RecsType.Number, - index: RecsType.Number, - input_resource_type: RecsType.Number, - input_resource_amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "ProductionInput", - types: ["u8", "u8", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - ProductionOutput: (() => { - return defineComponent( - world, - { input_resource_type: RecsType.Number, index: RecsType.Number, output_resource_type: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "ProductionOutput", - types: ["u8", "u8", "u8"], - customTypes: [], - }, - }, - ); - })(), - Progress: (() => { - return defineComponent( - world, - { hyperstructure_entity_id: RecsType.Number, resource_type: RecsType.Number, amount: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Progress", - types: ["u32", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - Protectee: (() => { - return defineComponent( - world, - { army_id: RecsType.Number, protectee_id: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Protectee", - types: ["u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Protector: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, army_id: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "Protector", - types: ["u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Quantity: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, value: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Quantity", - types: ["u32", "u128"], - customTypes: [], - }, - }, - ); - })(), - QuantityTracker: (() => { - return defineComponent( - world, - { entity_id: RecsType.BigInt, count: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "QuantityTracker", - types: ["felt252", "u128"], - customTypes: [], - }, - }, - ); - })(), - Quest: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, config_id: RecsType.Number, completed: RecsType.Boolean }, - { - metadata: { - namespace: "s0_eternum", - name: "Quest", - types: ["u32", "u32", "bool"], - customTypes: [], - }, - }, - ); - })(), - QuestBonus: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, resource_type: RecsType.Number, claimed: RecsType.Boolean }, - { - metadata: { - namespace: "s0_eternum", - name: "QuestBonus", - types: ["u32", "u8", "bool"], - customTypes: [], - }, - }, - ); - })(), - QuestConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, production_material_multiplier: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "QuestConfig", - types: ["u32", "u16"], - customTypes: [], - }, - }, - ); - })(), - QuestRewardConfig: (() => { - return defineComponent( - world, - { quest_id: RecsType.Number, detached_resource_id: RecsType.Number, detached_resource_count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "QuestRewardConfig", - types: ["u32", "u32", "u32"], - customTypes: [], - }, - }, - ); - })(), - Realm: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - realm_id: RecsType.Number, - produced_resources: RecsType.BigInt, - order: RecsType.Number, - level: RecsType.Number, - has_wonder: RecsType.Boolean, - settler_address: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Realm", - types: ["u32", "u32", "u128", "u8", "u8", "bool", "contractaddress"], - customTypes: [], - }, - }, - ); - })(), - RealmLevelConfig: (() => { - return defineComponent( - world, - { level: RecsType.Number, required_resources_id: RecsType.Number, required_resource_count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "RealmLevelConfig", - types: ["u8", "u32", "u8"], - customTypes: [], - }, - }, - ); - })(), - RealmMaxLevelConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, max_level: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "RealmMaxLevelConfig", - types: ["u32", "u8"], - customTypes: [], - }, - }, - ); - })(), - Resource: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, resource_type: RecsType.Number, balance: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Resource", - types: ["u32", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - ResourceAllowance: (() => { - return defineComponent( - world, - { - owner_entity_id: RecsType.Number, - approved_entity_id: RecsType.Number, - resource_type: RecsType.Number, - amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "ResourceAllowance", - types: ["u32", "u32", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - ResourceBridgeFeeSplitConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - velords_fee_on_dpt_percent: RecsType.Number, - velords_fee_on_wtdr_percent: RecsType.Number, - season_pool_fee_on_dpt_percent: RecsType.Number, - season_pool_fee_on_wtdr_percent: RecsType.Number, - client_fee_on_dpt_percent: RecsType.Number, - client_fee_on_wtdr_percent: RecsType.Number, - velords_fee_recipient: RecsType.BigInt, - season_pool_fee_recipient: RecsType.BigInt, - max_bank_fee_dpt_percent: RecsType.Number, - max_bank_fee_wtdr_percent: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "ResourceBridgeFeeSplitConfig", - types: [ - "u32", - "u16", - "u16", - "u16", - "u16", - "u16", - "u16", - "ContractAddress", - "ContractAddress", - "u16", - "u16", - ], - customTypes: [], - }, - }, - ); - })(), - ResourceBridgeWhitelistConfig: (() => { - return defineComponent( - world, - { - token: RecsType.BigInt, - resource_type: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "ResourceBridgeWhitelistConfig", - types: ["ContractAddress", "u8"], - customTypes: [], - }, - }, - ); - })(), - ResourceCost: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, index: RecsType.Number, resource_type: RecsType.Number, amount: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "ResourceCost", - types: ["u32", "u32", "u8", "u128"], - customTypes: [], - }, - }, - ); - })(), - ResourceTransferLock: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, start_at: RecsType.BigInt, release_at: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "ResourceTransferLock", - types: ["u32", "u64", "u64"], - customTypes: [], - }, - }, - ); - })(), - Season: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - start_at: RecsType.BigInt, - is_over: RecsType.Boolean, - ended_at: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Season", - types: ["u32", "u64", "bool", "u64"], - customTypes: [], - }, - }, - ); - })(), - SeasonAddressesConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - season_pass_address: RecsType.BigInt, - realms_address: RecsType.BigInt, - lords_address: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "SeasonAddressesConfig", - types: ["u32", "ContractAddress", "ContractAddress", "ContractAddress"], - customTypes: [], - }, - }, - ); - })(), - SettlementConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - angle_scaled: RecsType.BigInt, - center: RecsType.Number, - min_scaling_factor_scaled: RecsType.BigInt, - radius: RecsType.Number, - min_distance: RecsType.Number, - max_distance: RecsType.Number, - min_angle_increase: RecsType.BigInt, - max_angle_increase: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "SettlementConfig", - types: ["u32", "u128", "u32", "u128", "u32", "u32", "u32", "u64", "u64"], - customTypes: [], - }, - }, - ); - })(), - SpeedConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - speed_config_id: RecsType.Number, - entity_type: RecsType.Number, - sec_per_km: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "SpeedConfig", - types: ["u32", "u32", "u32", "u16"], - customTypes: [], - }, - }, - ); - })(), - Stamina: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, amount: RecsType.Number, last_refill_tick: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Stamina", - types: ["u32", "u16", "u64"], - customTypes: [], - }, - }, - ); - })(), - StaminaConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, unit_type: RecsType.Number, max_stamina: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "StaminaConfig", - types: ["u32", "u8", "u16"], - customTypes: [], - }, - }, - ); - })(), - StaminaRefillConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, amount_per_tick: RecsType.Number, start_boost_tick_count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "StaminaRefillConfig", - types: ["u32", "u16", "u8"], - customTypes: [], - }, - }, - ); - })(), - Status: (() => { - return defineComponent( - world, - { trade_id: RecsType.Number, value: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Status", - types: ["u32", "u128"], - customTypes: [], - }, - }, - ); - })(), - Structure: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, category: RecsType.String, created_at: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Structure", - types: ["u32", "enum", "u64"], - customTypes: ["StructureCategory"], - }, - }, - ); - })(), - StructureCount: (() => { - return defineComponent( - world, - { coord: { x: RecsType.Number, y: RecsType.Number }, count: RecsType.Number }, - { - metadata: { - namespace: "s0_eternum", - name: "StructureCount", - types: ["u32", "u32", "u8"], - customTypes: ["Coord"], - }, - }, - ); - })(), - TickConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, tick_id: RecsType.Number, tick_interval_in_seconds: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "TickConfig", - types: ["u32", "u8", "u64"], - customTypes: [], - }, - }, - ); - })(), - Tile: (() => { - return defineComponent( - world, - { - col: RecsType.Number, - row: RecsType.Number, - explored_by_id: RecsType.Number, - explored_at: RecsType.BigInt, - biome: RecsType.String, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Tile", - types: ["u32", "u32", "u32", "u64", "enum"], - customTypes: ["Biome"], - }, - }, - ); - })(), - Trade: (() => { - return defineComponent( - world, - { - trade_id: RecsType.Number, - maker_id: RecsType.Number, - maker_gives_resources_origin_id: RecsType.Number, - maker_gives_resources_id: RecsType.Number, - maker_gives_resources_hash: RecsType.BigInt, - maker_gives_resources_weight: RecsType.BigInt, - taker_id: RecsType.Number, - taker_gives_resources_origin_id: RecsType.Number, - taker_gives_resources_id: RecsType.Number, - taker_gives_resources_hash: RecsType.BigInt, - taker_gives_resources_weight: RecsType.BigInt, - expires_at: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Trade", - types: ["u32", "u32", "u32", "u32", "felt252", "u128", "u32", "u32", "u32", "felt252", "u128", "u64"], - customTypes: [], - }, - }, - ); - })(), - TravelFoodCostConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - unit_type: RecsType.Number, - explore_wheat_burn_amount: RecsType.BigInt, - explore_fish_burn_amount: RecsType.BigInt, - travel_wheat_burn_amount: RecsType.BigInt, - travel_fish_burn_amount: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "TravelFoodCostConfig", - types: ["u32", "u8", "u128", "u128", "u128", "u128"], - customTypes: [], - }, - }, - ); - })(), - TravelStaminaCostConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - travel_type: RecsType.Number, - cost: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "TravelStaminaCostConfig", - types: ["u32", "u8", "u16"], - customTypes: [], - }, - }, - ); - })(), - TroopConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - health: RecsType.Number, - knight_strength: RecsType.Number, - paladin_strength: RecsType.Number, - crossbowman_strength: RecsType.Number, - advantage_percent: RecsType.Number, - disadvantage_percent: RecsType.Number, - max_troop_count: RecsType.Number, - pillage_health_divisor: RecsType.Number, - army_free_per_structure: RecsType.Number, - army_extra_per_building: RecsType.Number, - army_max_per_structure: RecsType.Number, - battle_leave_slash_num: RecsType.Number, - battle_leave_slash_denom: RecsType.Number, - battle_time_scale: RecsType.Number, - battle_max_time_seconds: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "TroopConfig", - types: [ - "u32", - "u32", - "u8", - "u8", - "u16", - "u16", - "u16", - "u64", - "u8", - "u8", - "u8", - "u8", - "u8", - "u8", - "u16", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - Weight: (() => { - return defineComponent( - world, - { entity_id: RecsType.Number, value: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "Weight", - types: ["u32", "u128"], - customTypes: [], - }, - }, - ); - })(), - WeightConfig: (() => { - return defineComponent( - world, - { - config_id: RecsType.Number, - weight_config_id: RecsType.Number, - entity_type: RecsType.Number, - weight_gram: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "WeightConfig", - types: ["u32", "u32", "u32", "u128"], - customTypes: [], - }, - }, - ); - })(), - WorldConfig: (() => { - return defineComponent( - world, - { config_id: RecsType.Number, admin_address: RecsType.BigInt, realm_l2_contract: RecsType.BigInt }, - { - metadata: { - namespace: "s0_eternum", - name: "WorldConfig", - types: ["u32", "contractaddress", "contractaddress"], - customTypes: [], - }, - }, - ); - })(), - ...eventsComponents(world), - }; -} - -const eventsComponents = (world: World) => { - return { - events: { - AcceptOrder: (() => { - return defineComponent( - world, - { - taker_id: RecsType.Number, - maker_id: RecsType.Number, - id: RecsType.Number, - trade_id: RecsType.Number, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "AcceptOrder", - types: ["u32", "u32", "u32", "u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - - BattleClaimData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - structure_entity_id: RecsType.Number, - claimer: RecsType.BigInt, - claimer_name: RecsType.BigInt, - claimer_army_entity_id: RecsType.Number, - claimee_address: RecsType.BigInt, - claimee_name: RecsType.BigInt, - x: RecsType.Number, - y: RecsType.Number, - structure_type: RecsType.String, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattleClaimData", - types: [ - "u32", - "EventType", - "u32", - "ContractAddress", - "felt252", - "u32", - "ContractAddress", - "felt252", - "u32", - "u32", - "StructureCategory", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - - BattleJoinData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - battle_entity_id: RecsType.Number, - joiner: RecsType.BigInt, - joiner_name: RecsType.BigInt, - joiner_army_entity_id: RecsType.Number, - joiner_side: RecsType.String, - duration_left: RecsType.Number, - x: RecsType.Number, - y: RecsType.Number, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattleJoinData", - types: [ - "u32", - "EventType", - "u32", - "ContractAddress", - "felt252", - "u32", - "BattleSide", - "u64", - "u32", - "u32", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - - BattleLeaveData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - battle_entity_id: RecsType.Number, - leaver: RecsType.BigInt, - leaver_name: RecsType.BigInt, - leaver_army_entity_id: RecsType.Number, - leaver_side: RecsType.String, - duration_left: RecsType.Number, - x: RecsType.Number, - y: RecsType.Number, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattleLeaveData", - types: [ - "u32", - "EventType", - "u32", - "ContractAddress", - "felt252", - "u32", - "BattleSide", - "u64", - "u32", - "u32", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - - BattlePillageData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - pillager: RecsType.BigInt, - pillager_name: RecsType.BigInt, - pillager_realm_entity_id: RecsType.Number, - pillager_army_entity_id: RecsType.Number, - pillaged_structure_owner: RecsType.BigInt, - pillaged_structure_entity_id: RecsType.Number, - attacker_lost_troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - structure_lost_troops: { - knight_count: RecsType.BigInt, - paladin_count: RecsType.BigInt, - crossbowman_count: RecsType.BigInt, - }, - pillaged_structure_owner_name: RecsType.BigInt, - winner: RecsType.String, - x: RecsType.Number, - y: RecsType.Number, - structure_type: RecsType.String, - pillaged_resources: RecsType.StringArray, - destroyed_building_category: RecsType.String, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattlePillageData", - types: [ - "u32", - "EventType", - "ContractAddress", - "felt252", - "u32", - "u32", - "ContractAddress", - "u32", - // attacking troops - "u64", - "u64", - "u64", - // structure troops - "u64", - "u64", - "u64", - "felt252", - "BattleSide", - "u32", - "u32", - "StructureCategory", - "array", - "enum", - "u64", - ], - customTypes: ["Troops", "BuildingCategory"], - }, - }, - ); - })(), - - BattleStartData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - battle_entity_id: RecsType.Number, - attacker: RecsType.BigInt, - attacker_name: RecsType.BigInt, - attacker_army_entity_id: RecsType.Number, - defender_name: RecsType.BigInt, - defender: RecsType.BigInt, - defender_army_entity_id: RecsType.Number, - duration_left: RecsType.Number, - x: RecsType.Number, - y: RecsType.Number, - structure_type: RecsType.String, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BattleStartData", - types: [ - "u32", - "EventType", - "u32", - "ContractAddress", - "felt252", - "u32", - "felt252", - "ContractAddress", - "u32", - "u64", - "u32", - "u32", - "StructureCategory", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - - BurnDonkey: (() => { - return defineComponent( - world, - { - player_address: RecsType.BigInt, - entity_id: RecsType.Number, - amount: RecsType.BigInt, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "BurnDonkey", - types: ["ContractAddress", "u32", "u128", "u64"], - customTypes: [], - }, - }, - ); - })(), - - CancelOrder: (() => { - return defineComponent( - world, - { - taker_id: RecsType.Number, - maker_id: RecsType.Number, - trade_id: RecsType.Number, - timestamp: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "CancelOrder", - types: ["u32", "u32", "u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - - CreateGuild: (() => { - return defineComponent( - world, - { - guild_entity_id: RecsType.Number, - guild_name: RecsType.BigInt, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "CreateGuild", - types: ["u32", "felt252", "u64"], - customTypes: [], - }, - }, - ); - })(), - - CreateOrder: (() => { - return defineComponent( - world, - { - taker_id: RecsType.Number, - maker_id: RecsType.Number, - trade_id: RecsType.Number, - timestamp: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "CreateOrder", - types: ["u32", "u32", "u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - - GameEnded: (() => { - return defineComponent( - world, - { - winner_address: RecsType.BigInt, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "GameEnded", - types: ["ContractAddress", "u64"], - customTypes: [], - }, - }, - ); - })(), - - FragmentMineDiscovered: (() => { - return defineComponent( - world, - { - entity_owner_id: RecsType.Number, - mine_entity_id: RecsType.Number, - production_deadline_tick: RecsType.BigInt, - discovered_at: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "FragmentMineDiscovered", - types: ["u32", "u32", "u64", "u64"], - customTypes: [], - }, - }, - ); - })(), - - HyperstructureContribution: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - hyperstructure_entity_id: RecsType.Number, - contributor_entity_id: RecsType.Number, - contributions: RecsType.StringArray, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "HyperstructureContribution", - types: ["u32", "u32", "u32", "array", "u64"], - customTypes: [], - }, - }, - ); - })(), - - HyperstructureCoOwnersChange: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - hyperstructure_entity_id: RecsType.Number, - co_owners: RecsType.StringArray, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "HyperstructureCoOwnersChange", - types: ["u32", "u32", "array", "u64"], - customTypes: [], - }, - }, - ); - })(), - - HyperstructureFinished: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - hyperstructure_entity_id: RecsType.Number, - contributor_entity_id: RecsType.Number, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "HyperstructureFinished", - types: ["u32", "u32", "u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - - JoinGuild: (() => { - return defineComponent( - world, - { - guild_entity_id: RecsType.Number, - address: RecsType.BigInt, - guild_name: RecsType.BigInt, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "JoinGuild", - types: ["u32", "ContractAddress", "felt252", "u64"], - customTypes: [], - }, - }, - ); - })(), - - LiquidityEvent: (() => { - return defineComponent( - world, - { - bank_entity_id: RecsType.Number, - entity_id: RecsType.Number, - resource_type: RecsType.Number, - lords_amount: RecsType.BigInt, - resource_amount: RecsType.BigInt, - resource_price: RecsType.BigInt, - add: RecsType.Boolean, - timestamp: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "LiquidityEvent", - types: ["u32", "u32", "u8", "u128", "u128", "u128", "bool", "u64"], - customTypes: [], - }, - }, - ); - })(), - - MapExplored: (() => { - return defineComponent( - world, - { - entity_id: RecsType.Number, - col: RecsType.Number, - row: RecsType.Number, - id: RecsType.Number, - entity_owner_id: RecsType.Number, - biome: RecsType.String, - reward: RecsType.StringArray, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "MapExplored", - types: ["u32", "u32", "u32", "u32", "u32", "Biome", "array", "u64"], - customTypes: [], - }, - }, - ); - })(), - - SwapEvent: (() => { - return defineComponent( - world, - { - bank_entity_id: RecsType.Number, - entity_id: RecsType.Number, - id: RecsType.Number, - resource_type: RecsType.Number, - lords_amount: RecsType.BigInt, - resource_amount: RecsType.BigInt, - bank_owner_fees: RecsType.BigInt, - lp_fees: RecsType.BigInt, - resource_price: RecsType.BigInt, - buy: RecsType.Boolean, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "SwapEvent", - types: ["u32", "u32", "u32", "u8", "u128", "u128", "u128", "u128", "u128", "bool", "u64"], - customTypes: [], - }, - }, - ); - })(), - - SettleRealmData: (() => { - return defineComponent( - world, - { - id: RecsType.Number, - event_id: RecsType.String, - entity_id: RecsType.Number, - owner_address: RecsType.BigInt, - owner_name: RecsType.BigInt, - realm_name: RecsType.BigInt, - produced_resources: RecsType.BigInt, - cities: RecsType.Number, - harbors: RecsType.Number, - rivers: RecsType.Number, - regions: RecsType.Number, - wonder: RecsType.Number, - order: RecsType.Number, - x: RecsType.Number, - y: RecsType.Number, - timestamp: RecsType.Number, - }, - { - metadata: { - namespace: "s0_eternum", - name: "SettleRealmData", - types: [ - "u32", - "EventType", - "u32", - "ContractAddress", - "felt252", - "felt252", - "u128", - "u8", - "u8", - "u8", - "u8", - "u8", - "u8", - "u32", - "u32", - "u64", - ], - customTypes: [], - }, - }, - ); - })(), - - Transfer: (() => { - return defineComponent( - world, - { - recipient_entity_id: RecsType.Number, - sending_realm_id: RecsType.Number, - sender_entity_id: RecsType.Number, - resources: RecsType.StringArray, - timestamp: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Transfer", - types: ["u32", "u32", "u32", "array", "u64"], - customTypes: ["Coord"], - }, - }, - ); - })(), - - Travel: (() => { - return defineComponent( - world, - { - destination_coord_x: RecsType.Number, - destination_coord_y: RecsType.Number, - owner: RecsType.BigInt, - entity_id: RecsType.Number, - travel_time: RecsType.BigInt, - travel_path: RecsType.StringArray, - timestamp: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "Travel", - types: ["u32", "u32", "ContractAddress", "u32", "array", "u64"], - customTypes: ["Coord"], - }, - }, - ); - })(), - - TrophyProgression: (() => { - return defineComponent( - world, - { - player_id: RecsType.BigInt, - task_id: RecsType.BigInt, - count: RecsType.Number, - time: RecsType.BigInt, - }, - { - metadata: { - namespace: "s0_eternum", - name: "TrophyProgression", - types: ["felt252", "felt252", "u32", "u64"], - customTypes: [], - }, - }, - ); - })(), - }, - }; -}; diff --git a/client/apps/landing/src/dojo/createClientComponents.ts b/client/apps/landing/src/dojo/createClientComponents.ts deleted file mode 100644 index 9382ccff7..000000000 --- a/client/apps/landing/src/dojo/createClientComponents.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { overridableComponent } from "@dojoengine/recs"; -import { SetupNetworkResult } from "./setupNetwork"; - -type ClientComponents = ReturnType; - -export function createClientComponents({ contractComponents }: SetupNetworkResult) { - return { - ...contractComponents, - Building: overridableComponent(contractComponents.Building), - Position: overridableComponent(contractComponents.Position), - Stamina: overridableComponent(contractComponents.Stamina), - Tile: overridableComponent(contractComponents.Tile), - }; -} diff --git a/client/apps/landing/src/dojo/setup.ts b/client/apps/landing/src/dojo/setup.ts index 6fa6e87c7..ba0837b20 100644 --- a/client/apps/landing/src/dojo/setup.ts +++ b/client/apps/landing/src/dojo/setup.ts @@ -1,8 +1,5 @@ -import { ClientConfigManager, WORLD_CONFIG_ID } from "@bibliothecadao/eternum"; +import { ClientConfigManager, createClientComponents } from "@bibliothecadao/eternum"; import { DojoConfig } from "@dojoengine/core"; -import { getEvents } from "@dojoengine/state"; -import { Clause } from "@dojoengine/torii-client"; -import { createClientComponents } from "./createClientComponents"; import { createSystemCalls } from "./createSystemCalls"; import { setupNetwork } from "./setupNetwork"; @@ -14,102 +11,11 @@ export async function setup({ ...config }: DojoConfig) { const components = createClientComponents(network); const systemCalls = createSystemCalls(network); - const filteredModels = [ - /*"AddressName", - "Realm", - "Owner", - // points - "Hyperstructure", - "Epoch", - "Season", - "Contribution", - "HyperstructureResourceConfig", - "HyperstructureConfig", - "TickConfig", - // leaderboard - "GuildMember", - "EntityName", - "Structure",*/ - "CapacityConfig", - ]; - - const filteredEvents = [ - "BurnDonkey", - // points - // "HyperstructureCoOwnersChange", - // "HyperstructureFinished", - // "GameEnded", - ]; - - const clauses: Clause[] = [ - { - Keys: { - keys: [undefined], - pattern_matching: "FixedLen", - models: [], - }, - }, - { - Keys: { - keys: [WORLD_CONFIG_ID.toString(), undefined], - pattern_matching: "VariableLen", - models: [], - }, - }, - { - Keys: { - keys: [WORLD_CONFIG_ID.toString()], - pattern_matching: "VariableLen", - models: [], - }, - }, - ]; - // fetch all existing entities from torii with optional component filtering - /*await getEntities( - network.toriiClient, - { Composite: { operator: "Or", clauses } }, - filteredModels as any, - 1_000, - ); - - await getEntities( - network.toriiClient, - { - Keys: { - keys: [undefined], - pattern_matching: "VariableLen", - models: filteredModels.map((model) => `s0_eternum-${model}`), - }, - }, - network.contractComponents as any, - 40_000, - ); - - const sync = await syncEntities(network.toriiClient, filteredModels as any, [], false); - - */ - const eventSync = getEvents( - network.toriiClient, - network.contractComponents.events as any, - undefined, - { - Keys: { - keys: [undefined], - pattern_matching: "VariableLen", - models: filteredEvents.map((event) => `s0_eternum-${event}`), - }, - }, - false, - false, - ); - configManager.setDojo(components); return { network, components, systemCalls, - //sync, - eventSync, }; } diff --git a/client/apps/landing/src/dojo/setupNetwork.ts b/client/apps/landing/src/dojo/setupNetwork.ts index 213d5d218..bcbecf362 100644 --- a/client/apps/landing/src/dojo/setupNetwork.ts +++ b/client/apps/landing/src/dojo/setupNetwork.ts @@ -1,6 +1,5 @@ -import { EternumProvider } from "@bibliothecadao/eternum"; +import { defineContractComponents, EternumProvider } from "@bibliothecadao/eternum"; import { DojoConfig } from "@dojoengine/core"; -import { defineContractComponents } from "./contractComponents"; import { world } from "./world"; import { BurnerManager } from "@dojoengine/create-burner"; diff --git a/client/apps/landing/src/hooks/gql/fragment-masking.ts b/client/apps/landing/src/hooks/gql/fragment-masking.ts index 36dd77203..97b7ccb46 100644 --- a/client/apps/landing/src/hooks/gql/fragment-masking.ts +++ b/client/apps/landing/src/hooks/gql/fragment-masking.ts @@ -1,77 +1,78 @@ /* eslint-disable */ -import { DocumentTypeDecoration, ResultOf } from '@graphql-typed-document-node/core'; -import { Incremental, TypedDocumentString } from './graphql'; +import { ResultOf, DocumentTypeDecoration } from "@graphql-typed-document-node/core"; +import { Incremental, TypedDocumentString } from "./graphql"; - -type FragmentType> = TDocumentType extends DocumentTypeDecoration< - infer TType, - any -> - ? [TType] extends [{ ' $fragmentName'?: infer TKey }] - ? TKey extends string - ? { ' $fragmentRefs'?: { [key in TKey]: TType } } +export type FragmentType> = + TDocumentType extends DocumentTypeDecoration + ? [TType] extends [{ " $fragmentName"?: infer TKey }] + ? TKey extends string + ? { " $fragmentRefs"?: { [key in TKey]: TType } } + : never : never - : never - : never; + : never; // return non-nullable if `fragmentType` is non-nullable export function useFragment( _documentNode: DocumentTypeDecoration, - fragmentType: FragmentType> + fragmentType: FragmentType>, ): TType; // return nullable if `fragmentType` is undefined export function useFragment( _documentNode: DocumentTypeDecoration, - fragmentType: FragmentType> | undefined + fragmentType: FragmentType> | undefined, ): TType | undefined; // return nullable if `fragmentType` is nullable export function useFragment( _documentNode: DocumentTypeDecoration, - fragmentType: FragmentType> | null + fragmentType: FragmentType> | null, ): TType | null; // return nullable if `fragmentType` is nullable or undefined export function useFragment( _documentNode: DocumentTypeDecoration, - fragmentType: FragmentType> | null | undefined + fragmentType: FragmentType> | null | undefined, ): TType | null | undefined; // return array of non-nullable if `fragmentType` is array of non-nullable export function useFragment( _documentNode: DocumentTypeDecoration, - fragmentType: Array>> + fragmentType: Array>>, ): Array; // return array of nullable if `fragmentType` is array of nullable export function useFragment( _documentNode: DocumentTypeDecoration, - fragmentType: Array>> | null | undefined + fragmentType: Array>> | null | undefined, ): Array | null | undefined; // return readonly array of non-nullable if `fragmentType` is array of non-nullable export function useFragment( _documentNode: DocumentTypeDecoration, - fragmentType: ReadonlyArray>> + fragmentType: ReadonlyArray>>, ): ReadonlyArray; // return readonly array of nullable if `fragmentType` is array of nullable export function useFragment( _documentNode: DocumentTypeDecoration, - fragmentType: ReadonlyArray>> | null | undefined + fragmentType: ReadonlyArray>> | null | undefined, ): ReadonlyArray | null | undefined; export function useFragment( _documentNode: DocumentTypeDecoration, - fragmentType: FragmentType> | Array>> | ReadonlyArray>> | null | undefined + fragmentType: + | FragmentType> + | Array>> + | ReadonlyArray>> + | null + | undefined, ): TType | Array | ReadonlyArray | null | undefined { return fragmentType as any; } - -export function makeFragmentData< - F extends DocumentTypeDecoration, - FT extends ResultOf ->(data: FT, _fragment: F): FragmentType { +export function makeFragmentData, FT extends ResultOf>( + data: FT, + _fragment: F, +): FragmentType { return data as FragmentType; } export function isFragmentReady( queryNode: TypedDocumentString, fragmentNode: TypedDocumentString, - data: FragmentType, any>> | null | undefined + data: FragmentType, any>> | null | undefined, ): data is FragmentType { const deferredFields = queryNode.__meta__?.deferredFields as Record; const fragName = fragmentNode.__meta__?.fragmentName as string | undefined; @@ -79,5 +80,5 @@ export function isFragmentReady( if (!deferredFields || !fragName) return true; const fields = deferredFields[fragName] ?? []; - return fields.length > 0 && fields.every(field => data && field in data); + return fields.length > 0 && fields.every((field) => data && field in data); } diff --git a/client/apps/landing/src/hooks/gql/gql.ts b/client/apps/landing/src/hooks/gql/gql.ts index c82d4a94c..2dcf0cb79 100644 --- a/client/apps/landing/src/hooks/gql/gql.ts +++ b/client/apps/landing/src/hooks/gql/gql.ts @@ -1,7 +1,5 @@ /* eslint-disable */ -import * as types from './graphql'; - - +import * as types from "./graphql"; /** * Map of all GraphQL operations in the project. @@ -15,84 +13,112 @@ import * as types from './graphql'; * Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size */ const documents = { - "\n query getCapacitySpeedConfig($category: Enum!, $entityType: u32!) {\n s0EternumCapacityConfigModels(where: {category: $category }) {\n edges{\n node {\n weight_gram\n }\n }\n }\n s0EternumSpeedConfigModels(where: {entity_type: $entityType }) {\n edges{\n node {\n sec_per_km\n }\n }\n }\n }\n": types.GetCapacitySpeedConfigDocument, - "\n query getEternumOwnerRealmIds($accountAddress: ContractAddress!) {\n s0EternumOwnerModels(where: { address: $accountAddress }, limit: 8000) {\n edges {\n node {\n address\n entity_id\n entity {\n models {\n __typename\n ... on s0_eternum_Realm {\n realm_id\n }\n }\n }\n }\n }\n }\n }\n": types.GetEternumOwnerRealmIdsDocument, - "\n query getEternumEntityOwner($entityOwnerIds: [u32!]!) {\n s0EternumEntityOwnerModels(where: { entity_owner_idIN: $entityOwnerIds}, limit: 10000) {\n edges {\n node {\n entity_id\n entity_owner_id\n entity {\n models {\n __typename\n ... on s0_eternum_OwnedResourcesTracker {\n resource_types\n }\n ... on s0_eternum_Position {\n x\n y\n }\n ... on s0_eternum_ArrivalTime {\n arrives_at\n }\n ... on s0_eternum_Weight {\n value\n }\n }\n }\n }\n }\n }\n }\n": types.GetEternumEntityOwnerDocument, - "\n query getAccountTokens($accountAddress: String!) {\n tokenBalances(accountAddress: $accountAddress, limit: 8000) {\n edges {\n node {\n tokenMetadata {\n __typename\n ... on ERC721__Token {\n tokenId\n metadataDescription\n imagePath\n contractAddress\n metadata\n }\n }\n }\n }\n }\n }\n": types.GetAccountTokensDocument, - "\n query getERC721Mints {\n tokenTransfers(accountAddress: \"0x0\", limit: 8000) {\n edges {\n node {\n tokenMetadata {\n __typename\n ... on ERC721__Token {\n tokenId\n metadataDescription\n imagePath\n contractAddress\n metadata\n }\n }\n }\n }\n }\n }\n": types.GetErc721MintsDocument, - "\n query eternumStatistics {\n s0EternumAddressNameModels {\n totalCount\n }\n s0EternumHyperstructureModels {\n totalCount\n }\n s0EternumRealmModels {\n totalCount\n }\n s0EternumFragmentMineDiscoveredModels {\n totalCount\n }\n }\n": types.EternumStatisticsDocument, - "\n query hasGameEnded {\n s0EternumGameEndedModels {\n edges {\n node {\n winner_address\n }\n }\n }\n }\n": types.HasGameEndedDocument, - "\n query hasPlayerRegistered($accountAddress: ContractAddress!) {\n s0EternumOwnerModels(where: { address: $accountAddress }) {\n totalCount\n }\n }\n": types.HasPlayerRegisteredDocument, - "\n query hasPlayerClaimed($accountAddress: ContractAddress!) {\n s0EternumLeaderboardRewardClaimedModels(where: { address: $accountAddress }) {\n totalCount\n }\n }\n": types.HasPlayerClaimedDocument, - "\n query getLeaderboardEntry($accountAddress: ContractAddress!) {\n s0EternumLeaderboardEntryModels(where: { address: $accountAddress }) {\n edges {\n node {\n address\n points\n }\n }\n }\n }\n": types.GetLeaderboardEntryDocument, - "\n query getLeaderboard {\n s0EternumLeaderboardModels {\n edges {\n node {\n total_points\n registration_end_timestamp\n total_price_pool {\n Some\n option\n }\n distribution_started\n }\n }\n }\n }\n": types.GetLeaderboardDocument, - "\n query getHyperstructureContributions($accountAddress: ContractAddress!) {\n s0EternumContributionModels(where: { player_address: $accountAddress }, limit: 1000) {\n edges {\n node {\n hyperstructure_entity_id\n amount\n }\n }\n }\n }\n": types.GetHyperstructureContributionsDocument, - "\n query getEpochs {\n s0EternumEpochModels(limit: 1000) {\n edges {\n node {\n owners {\n _0\n _1\n }\n start_timestamp\n hyperstructure_entity_id\n index\n }\n }\n }\n }\n": types.GetEpochsDocument, - "\n query getEntityPosition($entityIds: [u32!]!) {\n s0EternumPositionModels(where: { entity_idIN: $entityIds }, limit: 8000) {\n edges {\n node {\n x\n y\n entity_id\n entity {\n __typename\n }\n }\n }\n }\n }\n": types.GetEntityPositionDocument, - "\n query getEntitiesResources($entityIds: [u32!]!) {\n s0EternumResourceModels(where: { entity_idIN: $entityIds }, limit: 8000) {\n edges {\n node {\n entity_id\n resource_type\n balance\n entity {\n __typename\n }\n }\n }\n }\n }\n": types.GetEntitiesResourcesDocument, + "\n query getCapacitySpeedConfig($category: Enum!, $entityType: u32!) {\n s0EternumCapacityConfigModels(where: { category: $category }) {\n edges {\n node {\n weight_gram\n }\n }\n }\n s0EternumSpeedConfigModels(where: { entity_type: $entityType }) {\n edges {\n node {\n sec_per_km\n }\n }\n }\n }\n": + types.GetCapacitySpeedConfigDocument, + "\n query getEternumOwnerRealmIds($accountAddress: ContractAddress!) {\n s0EternumOwnerModels(where: { address: $accountAddress }, limit: 8000) {\n edges {\n node {\n address\n entity_id\n entity {\n models {\n __typename\n ... on s0_eternum_Realm {\n realm_id\n }\n }\n }\n }\n }\n }\n }\n": + types.GetEternumOwnerRealmIdsDocument, + "\n query getEternumEntityOwner($entityOwnerIds: [u32!]!) {\n s0EternumEntityOwnerModels(where: { entity_owner_idIN: $entityOwnerIds }, limit: 10000) {\n edges {\n node {\n entity_id\n entity_owner_id\n entity {\n models {\n __typename\n ... on s0_eternum_OwnedResourcesTracker {\n resource_types\n }\n ... on s0_eternum_Position {\n x\n y\n }\n ... on s0_eternum_ArrivalTime {\n arrives_at\n }\n ... on s0_eternum_Weight {\n value\n }\n }\n }\n }\n }\n }\n }\n": + types.GetEternumEntityOwnerDocument, + "\n query getAccountTokens($accountAddress: String!) {\n tokenBalances(accountAddress: $accountAddress, limit: 8000) {\n edges {\n node {\n tokenMetadata {\n __typename\n ... on ERC721__Token {\n tokenId\n metadataDescription\n imagePath\n contractAddress\n metadata\n }\n }\n }\n }\n }\n }\n": + types.GetAccountTokensDocument, + '\n query getERC721Mints {\n tokenTransfers(accountAddress: "0x0", limit: 8000) {\n edges {\n node {\n tokenMetadata {\n __typename\n ... on ERC721__Token {\n tokenId\n metadataDescription\n imagePath\n contractAddress\n metadata\n }\n }\n }\n }\n }\n }\n': + types.GetErc721MintsDocument, + "\n query eternumStatistics {\n s0EternumAddressNameModels {\n totalCount\n }\n s0EternumHyperstructureModels {\n totalCount\n }\n s0EternumRealmModels {\n totalCount\n }\n s0EternumFragmentMineDiscoveredModels {\n totalCount\n }\n }\n": + types.EternumStatisticsDocument, + "\n query hasGameEnded {\n s0EternumGameEndedModels {\n edges {\n node {\n winner_address\n }\n }\n }\n }\n": + types.HasGameEndedDocument, + "\n query getLeaderboardEntry($accountAddress: ContractAddress!) {\n s0EternumLeaderboardEntryModels(where: { address: $accountAddress }) {\n edges {\n node {\n address\n points\n }\n }\n }\n }\n": + types.GetLeaderboardEntryDocument, + "\n query getLeaderboard {\n s0EternumLeaderboardModels {\n edges {\n node {\n total_points\n registration_end_timestamp\n total_price_pool {\n Some\n option\n }\n distribution_started\n }\n }\n }\n }\n": + types.GetLeaderboardDocument, + "\n query getHyperstructureContributions($accountAddress: ContractAddress!) {\n s0EternumContributionModels(where: { player_address: $accountAddress }, limit: 1000) {\n edges {\n node {\n hyperstructure_entity_id\n amount\n }\n }\n }\n }\n": + types.GetHyperstructureContributionsDocument, + "\n query getEpochs {\n s0EternumEpochModels(limit: 1000) {\n edges {\n node {\n owners {\n _0\n _1\n }\n start_timestamp\n hyperstructure_entity_id\n index\n }\n }\n }\n }\n": + types.GetEpochsDocument, + "\n query getEntityPosition($entityIds: [u32!]!) {\n s0EternumPositionModels(where: { entity_idIN: $entityIds }, limit: 8000) {\n edges {\n node {\n x\n y\n entity_id\n entity {\n __typename\n }\n }\n }\n }\n }\n": + types.GetEntityPositionDocument, + "\n query getEntitiesResources($entityIds: [u32!]!) {\n s0EternumResourceModels(where: { entity_idIN: $entityIds }, limit: 8000) {\n edges {\n node {\n entity_id\n resource_type\n balance\n entity {\n __typename\n }\n }\n }\n }\n }\n": + types.GetEntitiesResourcesDocument, }; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query getCapacitySpeedConfig($category: Enum!, $entityType: u32!) {\n s0EternumCapacityConfigModels(where: {category: $category }) {\n edges{\n node {\n weight_gram\n }\n }\n }\n s0EternumSpeedConfigModels(where: {entity_type: $entityType }) {\n edges{\n node {\n sec_per_km\n }\n }\n }\n }\n"): typeof import('./graphql').GetCapacitySpeedConfigDocument; -/** - * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. - */ -export function graphql(source: "\n query getEternumOwnerRealmIds($accountAddress: ContractAddress!) {\n s0EternumOwnerModels(where: { address: $accountAddress }, limit: 8000) {\n edges {\n node {\n address\n entity_id\n entity {\n models {\n __typename\n ... on s0_eternum_Realm {\n realm_id\n }\n }\n }\n }\n }\n }\n }\n"): typeof import('./graphql').GetEternumOwnerRealmIdsDocument; +export function graphql( + source: "\n query getCapacitySpeedConfig($category: Enum!, $entityType: u32!) {\n s0EternumCapacityConfigModels(where: { category: $category }) {\n edges {\n node {\n weight_gram\n }\n }\n }\n s0EternumSpeedConfigModels(where: { entity_type: $entityType }) {\n edges {\n node {\n sec_per_km\n }\n }\n }\n }\n", +): typeof import("./graphql").GetCapacitySpeedConfigDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query getEternumEntityOwner($entityOwnerIds: [u32!]!) {\n s0EternumEntityOwnerModels(where: { entity_owner_idIN: $entityOwnerIds}, limit: 10000) {\n edges {\n node {\n entity_id\n entity_owner_id\n entity {\n models {\n __typename\n ... on s0_eternum_OwnedResourcesTracker {\n resource_types\n }\n ... on s0_eternum_Position {\n x\n y\n }\n ... on s0_eternum_ArrivalTime {\n arrives_at\n }\n ... on s0_eternum_Weight {\n value\n }\n }\n }\n }\n }\n }\n }\n"): typeof import('./graphql').GetEternumEntityOwnerDocument; +export function graphql( + source: "\n query getEternumOwnerRealmIds($accountAddress: ContractAddress!) {\n s0EternumOwnerModels(where: { address: $accountAddress }, limit: 8000) {\n edges {\n node {\n address\n entity_id\n entity {\n models {\n __typename\n ... on s0_eternum_Realm {\n realm_id\n }\n }\n }\n }\n }\n }\n }\n", +): typeof import("./graphql").GetEternumOwnerRealmIdsDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query getAccountTokens($accountAddress: String!) {\n tokenBalances(accountAddress: $accountAddress, limit: 8000) {\n edges {\n node {\n tokenMetadata {\n __typename\n ... on ERC721__Token {\n tokenId\n metadataDescription\n imagePath\n contractAddress\n metadata\n }\n }\n }\n }\n }\n }\n"): typeof import('./graphql').GetAccountTokensDocument; +export function graphql( + source: "\n query getEternumEntityOwner($entityOwnerIds: [u32!]!) {\n s0EternumEntityOwnerModels(where: { entity_owner_idIN: $entityOwnerIds }, limit: 10000) {\n edges {\n node {\n entity_id\n entity_owner_id\n entity {\n models {\n __typename\n ... on s0_eternum_OwnedResourcesTracker {\n resource_types\n }\n ... on s0_eternum_Position {\n x\n y\n }\n ... on s0_eternum_ArrivalTime {\n arrives_at\n }\n ... on s0_eternum_Weight {\n value\n }\n }\n }\n }\n }\n }\n }\n", +): typeof import("./graphql").GetEternumEntityOwnerDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query getERC721Mints {\n tokenTransfers(accountAddress: \"0x0\", limit: 8000) {\n edges {\n node {\n tokenMetadata {\n __typename\n ... on ERC721__Token {\n tokenId\n metadataDescription\n imagePath\n contractAddress\n metadata\n }\n }\n }\n }\n }\n }\n"): typeof import('./graphql').GetErc721MintsDocument; +export function graphql( + source: "\n query getAccountTokens($accountAddress: String!) {\n tokenBalances(accountAddress: $accountAddress, limit: 8000) {\n edges {\n node {\n tokenMetadata {\n __typename\n ... on ERC721__Token {\n tokenId\n metadataDescription\n imagePath\n contractAddress\n metadata\n }\n }\n }\n }\n }\n }\n", +): typeof import("./graphql").GetAccountTokensDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query eternumStatistics {\n s0EternumAddressNameModels {\n totalCount\n }\n s0EternumHyperstructureModels {\n totalCount\n }\n s0EternumRealmModels {\n totalCount\n }\n s0EternumFragmentMineDiscoveredModels {\n totalCount\n }\n }\n"): typeof import('./graphql').EternumStatisticsDocument; +export function graphql( + source: '\n query getERC721Mints {\n tokenTransfers(accountAddress: "0x0", limit: 8000) {\n edges {\n node {\n tokenMetadata {\n __typename\n ... on ERC721__Token {\n tokenId\n metadataDescription\n imagePath\n contractAddress\n metadata\n }\n }\n }\n }\n }\n }\n', +): typeof import("./graphql").GetErc721MintsDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query hasGameEnded {\n s0EternumGameEndedModels {\n edges {\n node {\n winner_address\n }\n }\n }\n }\n"): typeof import('./graphql').HasGameEndedDocument; +export function graphql( + source: "\n query eternumStatistics {\n s0EternumAddressNameModels {\n totalCount\n }\n s0EternumHyperstructureModels {\n totalCount\n }\n s0EternumRealmModels {\n totalCount\n }\n s0EternumFragmentMineDiscoveredModels {\n totalCount\n }\n }\n", +): typeof import("./graphql").EternumStatisticsDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query hasPlayerRegistered($accountAddress: ContractAddress!) {\n s0EternumOwnerModels(where: { address: $accountAddress }) {\n totalCount\n }\n }\n"): typeof import('./graphql').HasPlayerRegisteredDocument; +export function graphql( + source: "\n query hasGameEnded {\n s0EternumGameEndedModels {\n edges {\n node {\n winner_address\n }\n }\n }\n }\n", +): typeof import("./graphql").HasGameEndedDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query hasPlayerClaimed($accountAddress: ContractAddress!) {\n s0EternumLeaderboardRewardClaimedModels(where: { address: $accountAddress }) {\n totalCount\n }\n }\n"): typeof import('./graphql').HasPlayerClaimedDocument; +export function graphql( + source: "\n query getLeaderboardEntry($accountAddress: ContractAddress!) {\n s0EternumLeaderboardEntryModels(where: { address: $accountAddress }) {\n edges {\n node {\n address\n points\n }\n }\n }\n }\n", +): typeof import("./graphql").GetLeaderboardEntryDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query getLeaderboardEntry($accountAddress: ContractAddress!) {\n s0EternumLeaderboardEntryModels(where: { address: $accountAddress }) {\n edges {\n node {\n address\n points\n }\n }\n }\n }\n"): typeof import('./graphql').GetLeaderboardEntryDocument; +export function graphql( + source: "\n query getLeaderboard {\n s0EternumLeaderboardModels {\n edges {\n node {\n total_points\n registration_end_timestamp\n total_price_pool {\n Some\n option\n }\n distribution_started\n }\n }\n }\n }\n", +): typeof import("./graphql").GetLeaderboardDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query getLeaderboard {\n s0EternumLeaderboardModels {\n edges {\n node {\n total_points\n registration_end_timestamp\n total_price_pool {\n Some\n option\n }\n distribution_started\n }\n }\n }\n }\n"): typeof import('./graphql').GetLeaderboardDocument; +export function graphql( + source: "\n query getHyperstructureContributions($accountAddress: ContractAddress!) {\n s0EternumContributionModels(where: { player_address: $accountAddress }, limit: 1000) {\n edges {\n node {\n hyperstructure_entity_id\n amount\n }\n }\n }\n }\n", +): typeof import("./graphql").GetHyperstructureContributionsDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query getHyperstructureContributions($accountAddress: ContractAddress!) {\n s0EternumContributionModels(where: { player_address: $accountAddress }, limit: 1000) {\n edges {\n node {\n hyperstructure_entity_id\n amount\n }\n }\n }\n }\n"): typeof import('./graphql').GetHyperstructureContributionsDocument; +export function graphql( + source: "\n query getEpochs {\n s0EternumEpochModels(limit: 1000) {\n edges {\n node {\n owners {\n _0\n _1\n }\n start_timestamp\n hyperstructure_entity_id\n index\n }\n }\n }\n }\n", +): typeof import("./graphql").GetEpochsDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query getEpochs {\n s0EternumEpochModels(limit: 1000) {\n edges {\n node {\n owners {\n _0\n _1\n }\n start_timestamp\n hyperstructure_entity_id\n index\n }\n }\n }\n }\n"): typeof import('./graphql').GetEpochsDocument; +export function graphql( + source: "\n query getEntityPosition($entityIds: [u32!]!) {\n s0EternumPositionModels(where: { entity_idIN: $entityIds }, limit: 8000) {\n edges {\n node {\n x\n y\n entity_id\n entity {\n __typename\n }\n }\n }\n }\n }\n", +): typeof import("./graphql").GetEntityPositionDocument; /** * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function graphql(source: "\n query getEntityPosition($entityIds: [u32!]!) {\n s0EternumPositionModels(where: { entity_idIN: $entityIds }, limit: 8000) {\n edges {\n node {\n x\n y\n entity_id\n entity {\n __typename\n }\n }\n }\n }\n }\n"): typeof import('./graphql').GetEntityPositionDocument; -/** - * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. - */ -export function graphql(source: "\n query getEntitiesResources($entityIds: [u32!]!) {\n s0EternumResourceModels(where: { entity_idIN: $entityIds }, limit: 8000) {\n edges {\n node {\n entity_id\n resource_type\n balance\n entity {\n __typename\n }\n }\n }\n }\n }\n"): typeof import('./graphql').GetEntitiesResourcesDocument; - +export function graphql( + source: "\n query getEntitiesResources($entityIds: [u32!]!) {\n s0EternumResourceModels(where: { entity_idIN: $entityIds }, limit: 8000) {\n edges {\n node {\n entity_id\n resource_type\n balance\n entity {\n __typename\n }\n }\n }\n }\n }\n", +): typeof import("./graphql").GetEntitiesResourcesDocument; export function graphql(source: string) { return (documents as any)[source] ?? {}; diff --git a/client/apps/landing/src/hooks/gql/graphql.ts b/client/apps/landing/src/hooks/gql/graphql.ts index e9ada9682..aa640549f 100644 --- a/client/apps/landing/src/hooks/gql/graphql.ts +++ b/client/apps/landing/src/hooks/gql/graphql.ts @@ -1,37 +1,37 @@ /* eslint-disable */ -import { DocumentTypeDecoration } from '@graphql-typed-document-node/core'; +import { DocumentTypeDecoration } from "@graphql-typed-document-node/core"; export type Maybe = T | null; export type InputMaybe = Maybe; 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 }; +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; } - ByteArray: { input: any; output: any; } - ContractAddress: { input: any; output: any; } - Cursor: { input: any; output: any; } - DateTime: { input: any; output: any; } - Enum: { input: any; output: any; } - bool: { input: any; output: any; } - felt252: { input: any; output: any; } - u8: { input: any; output: any; } - u16: { input: any; output: any; } - u32: { input: any; output: any; } - u64: { input: any; output: any; } - u128: { input: any; output: any; } - u256: { input: any; output: any; } + 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 }; + ByteArray: { input: any; output: any }; + ContractAddress: { input: any; output: any }; + Cursor: { input: any; output: any }; + DateTime: { input: any; output: any }; + Enum: { input: any; output: any }; + bool: { input: any; output: any }; + felt252: { input: any; output: any }; + u8: { input: any; output: any }; + u16: { input: any; output: any }; + u32: { input: any; output: any }; + u64: { input: any; output: any }; + u128: { input: any; output: any }; + u256: { input: any; output: any }; }; export enum OrderDirection { - Asc = 'ASC', - Desc = 'DESC' + Asc = "ASC", + Desc = "DESC", } export type World__ModelOrder = { @@ -40,8 +40,8 @@ export type World__ModelOrder = { }; export enum World__ModelOrderField { - ClassHash = 'CLASS_HASH', - Name = 'NAME' + ClassHash = "CLASS_HASH", + Name = "NAME", } export type S0_Eternum_AcceptOrderOrder = { @@ -50,69 +50,69 @@ export type S0_Eternum_AcceptOrderOrder = { }; export enum S0_Eternum_AcceptOrderOrderField { - Id = 'ID', - MakerId = 'MAKER_ID', - TakerId = 'TAKER_ID', - Timestamp = 'TIMESTAMP', - TradeId = 'TRADE_ID' + Id = "ID", + MakerId = "MAKER_ID", + TakerId = "TAKER_ID", + Timestamp = "TIMESTAMP", + TradeId = "TRADE_ID", } export type S0_Eternum_AcceptOrderWhereInput = { - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - maker_id?: InputMaybe; - maker_idEQ?: InputMaybe; - maker_idGT?: InputMaybe; - maker_idGTE?: InputMaybe; - maker_idIN?: InputMaybe>>; - maker_idLIKE?: InputMaybe; - maker_idLT?: InputMaybe; - maker_idLTE?: InputMaybe; - maker_idNEQ?: InputMaybe; - maker_idNOTIN?: InputMaybe>>; - maker_idNOTLIKE?: InputMaybe; - taker_id?: InputMaybe; - taker_idEQ?: InputMaybe; - taker_idGT?: InputMaybe; - taker_idGTE?: InputMaybe; - taker_idIN?: InputMaybe>>; - taker_idLIKE?: InputMaybe; - taker_idLT?: InputMaybe; - taker_idLTE?: InputMaybe; - taker_idNEQ?: InputMaybe; - taker_idNOTIN?: InputMaybe>>; - taker_idNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - trade_id?: InputMaybe; - trade_idEQ?: InputMaybe; - trade_idGT?: InputMaybe; - trade_idGTE?: InputMaybe; - trade_idIN?: InputMaybe>>; - trade_idLIKE?: InputMaybe; - trade_idLT?: InputMaybe; - trade_idLTE?: InputMaybe; - trade_idNEQ?: InputMaybe; - trade_idNOTIN?: InputMaybe>>; - trade_idNOTLIKE?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + maker_id?: InputMaybe; + maker_idEQ?: InputMaybe; + maker_idGT?: InputMaybe; + maker_idGTE?: InputMaybe; + maker_idIN?: InputMaybe>>; + maker_idLIKE?: InputMaybe; + maker_idLT?: InputMaybe; + maker_idLTE?: InputMaybe; + maker_idNEQ?: InputMaybe; + maker_idNOTIN?: InputMaybe>>; + maker_idNOTLIKE?: InputMaybe; + taker_id?: InputMaybe; + taker_idEQ?: InputMaybe; + taker_idGT?: InputMaybe; + taker_idGTE?: InputMaybe; + taker_idIN?: InputMaybe>>; + taker_idLIKE?: InputMaybe; + taker_idLT?: InputMaybe; + taker_idLTE?: InputMaybe; + taker_idNEQ?: InputMaybe; + taker_idNOTIN?: InputMaybe>>; + taker_idNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + trade_id?: InputMaybe; + trade_idEQ?: InputMaybe; + trade_idGT?: InputMaybe; + trade_idGTE?: InputMaybe; + trade_idIN?: InputMaybe>>; + trade_idLIKE?: InputMaybe; + trade_idLT?: InputMaybe; + trade_idLTE?: InputMaybe; + trade_idNEQ?: InputMaybe; + trade_idNOTIN?: InputMaybe>>; + trade_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_AcceptPartialOrderOrder = { @@ -121,57 +121,57 @@ export type S0_Eternum_AcceptPartialOrderOrder = { }; export enum S0_Eternum_AcceptPartialOrderOrderField { - MakerId = 'MAKER_ID', - TakerId = 'TAKER_ID', - Timestamp = 'TIMESTAMP', - TradeId = 'TRADE_ID' + MakerId = "MAKER_ID", + TakerId = "TAKER_ID", + Timestamp = "TIMESTAMP", + TradeId = "TRADE_ID", } export type S0_Eternum_AcceptPartialOrderWhereInput = { - maker_id?: InputMaybe; - maker_idEQ?: InputMaybe; - maker_idGT?: InputMaybe; - maker_idGTE?: InputMaybe; - maker_idIN?: InputMaybe>>; - maker_idLIKE?: InputMaybe; - maker_idLT?: InputMaybe; - maker_idLTE?: InputMaybe; - maker_idNEQ?: InputMaybe; - maker_idNOTIN?: InputMaybe>>; - maker_idNOTLIKE?: InputMaybe; - taker_id?: InputMaybe; - taker_idEQ?: InputMaybe; - taker_idGT?: InputMaybe; - taker_idGTE?: InputMaybe; - taker_idIN?: InputMaybe>>; - taker_idLIKE?: InputMaybe; - taker_idLT?: InputMaybe; - taker_idLTE?: InputMaybe; - taker_idNEQ?: InputMaybe; - taker_idNOTIN?: InputMaybe>>; - taker_idNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - trade_id?: InputMaybe; - trade_idEQ?: InputMaybe; - trade_idGT?: InputMaybe; - trade_idGTE?: InputMaybe; - trade_idIN?: InputMaybe>>; - trade_idLIKE?: InputMaybe; - trade_idLT?: InputMaybe; - trade_idLTE?: InputMaybe; - trade_idNEQ?: InputMaybe; - trade_idNOTIN?: InputMaybe>>; - trade_idNOTLIKE?: InputMaybe; + maker_id?: InputMaybe; + maker_idEQ?: InputMaybe; + maker_idGT?: InputMaybe; + maker_idGTE?: InputMaybe; + maker_idIN?: InputMaybe>>; + maker_idLIKE?: InputMaybe; + maker_idLT?: InputMaybe; + maker_idLTE?: InputMaybe; + maker_idNEQ?: InputMaybe; + maker_idNOTIN?: InputMaybe>>; + maker_idNOTLIKE?: InputMaybe; + taker_id?: InputMaybe; + taker_idEQ?: InputMaybe; + taker_idGT?: InputMaybe; + taker_idGTE?: InputMaybe; + taker_idIN?: InputMaybe>>; + taker_idLIKE?: InputMaybe; + taker_idLT?: InputMaybe; + taker_idLTE?: InputMaybe; + taker_idNEQ?: InputMaybe; + taker_idNOTIN?: InputMaybe>>; + taker_idNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + trade_id?: InputMaybe; + trade_idEQ?: InputMaybe; + trade_idGT?: InputMaybe; + trade_idGTE?: InputMaybe; + trade_idIN?: InputMaybe>>; + trade_idLIKE?: InputMaybe; + trade_idLT?: InputMaybe; + trade_idLTE?: InputMaybe; + trade_idNEQ?: InputMaybe; + trade_idNOTIN?: InputMaybe>>; + trade_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_AddressNameOrder = { @@ -180,33 +180,33 @@ export type S0_Eternum_AddressNameOrder = { }; export enum S0_Eternum_AddressNameOrderField { - Address = 'ADDRESS', - Name = 'NAME' + Address = "ADDRESS", + Name = "NAME", } export type S0_Eternum_AddressNameWhereInput = { - address?: InputMaybe; - addressEQ?: InputMaybe; - addressGT?: InputMaybe; - addressGTE?: InputMaybe; - addressIN?: InputMaybe>>; - addressLIKE?: InputMaybe; - addressLT?: InputMaybe; - addressLTE?: InputMaybe; - addressNEQ?: InputMaybe; - addressNOTIN?: InputMaybe>>; - addressNOTLIKE?: InputMaybe; - name?: InputMaybe; - nameEQ?: InputMaybe; - nameGT?: InputMaybe; - nameGTE?: InputMaybe; - nameIN?: InputMaybe>>; - nameLIKE?: InputMaybe; - nameLT?: InputMaybe; - nameLTE?: InputMaybe; - nameNEQ?: InputMaybe; - nameNOTIN?: InputMaybe>>; - nameNOTLIKE?: InputMaybe; + address?: InputMaybe; + addressEQ?: InputMaybe; + addressGT?: InputMaybe; + addressGTE?: InputMaybe; + addressIN?: InputMaybe>>; + addressLIKE?: InputMaybe; + addressLT?: InputMaybe; + addressLTE?: InputMaybe; + addressNEQ?: InputMaybe; + addressNOTIN?: InputMaybe>>; + addressNOTLIKE?: InputMaybe; + name?: InputMaybe; + nameEQ?: InputMaybe; + nameGT?: InputMaybe; + nameGTE?: InputMaybe; + nameIN?: InputMaybe>>; + nameLIKE?: InputMaybe; + nameLT?: InputMaybe; + nameLTE?: InputMaybe; + nameNEQ?: InputMaybe; + nameNOTIN?: InputMaybe>>; + nameNOTLIKE?: InputMaybe; }; export type S0_Eternum_ArmyOrder = { @@ -215,36 +215,36 @@ export type S0_Eternum_ArmyOrder = { }; export enum S0_Eternum_ArmyOrderField { - BattleId = 'BATTLE_ID', - BattleSide = 'BATTLE_SIDE', - EntityId = 'ENTITY_ID', - Troops = 'TROOPS' + BattleId = "BATTLE_ID", + BattleSide = "BATTLE_SIDE", + EntityId = "ENTITY_ID", + Troops = "TROOPS", } export type S0_Eternum_ArmyWhereInput = { - battle_id?: InputMaybe; - battle_idEQ?: InputMaybe; - battle_idGT?: InputMaybe; - battle_idGTE?: InputMaybe; - battle_idIN?: InputMaybe>>; - battle_idLIKE?: InputMaybe; - battle_idLT?: InputMaybe; - battle_idLTE?: InputMaybe; - battle_idNEQ?: InputMaybe; - battle_idNOTIN?: InputMaybe>>; - battle_idNOTLIKE?: InputMaybe; - battle_side?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; + battle_id?: InputMaybe; + battle_idEQ?: InputMaybe; + battle_idGT?: InputMaybe; + battle_idGTE?: InputMaybe; + battle_idIN?: InputMaybe>>; + battle_idLIKE?: InputMaybe; + battle_idLT?: InputMaybe; + battle_idLTE?: InputMaybe; + battle_idNEQ?: InputMaybe; + battle_idNOTIN?: InputMaybe>>; + battle_idNOTLIKE?: InputMaybe; + battle_side?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_ArrivalTimeOrder = { @@ -253,33 +253,33 @@ export type S0_Eternum_ArrivalTimeOrder = { }; export enum S0_Eternum_ArrivalTimeOrderField { - ArrivesAt = 'ARRIVES_AT', - EntityId = 'ENTITY_ID' + ArrivesAt = "ARRIVES_AT", + EntityId = "ENTITY_ID", } export type S0_Eternum_ArrivalTimeWhereInput = { - arrives_at?: InputMaybe; - arrives_atEQ?: InputMaybe; - arrives_atGT?: InputMaybe; - arrives_atGTE?: InputMaybe; - arrives_atIN?: InputMaybe>>; - arrives_atLIKE?: InputMaybe; - arrives_atLT?: InputMaybe; - arrives_atLTE?: InputMaybe; - arrives_atNEQ?: InputMaybe; - arrives_atNOTIN?: InputMaybe>>; - arrives_atNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; + arrives_at?: InputMaybe; + arrives_atEQ?: InputMaybe; + arrives_atGT?: InputMaybe; + arrives_atGTE?: InputMaybe; + arrives_atIN?: InputMaybe>>; + arrives_atLIKE?: InputMaybe; + arrives_atLT?: InputMaybe; + arrives_atLTE?: InputMaybe; + arrives_atNEQ?: InputMaybe; + arrives_atNOTIN?: InputMaybe>>; + arrives_atNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_BankConfigOrder = { @@ -288,57 +288,57 @@ export type S0_Eternum_BankConfigOrder = { }; export enum S0_Eternum_BankConfigOrderField { - ConfigId = 'CONFIG_ID', - LordsCost = 'LORDS_COST', - LpFeeDenom = 'LP_FEE_DENOM', - LpFeeNum = 'LP_FEE_NUM' + ConfigId = "CONFIG_ID", + LordsCost = "LORDS_COST", + LpFeeDenom = "LP_FEE_DENOM", + LpFeeNum = "LP_FEE_NUM", } export type S0_Eternum_BankConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - lords_cost?: InputMaybe; - lords_costEQ?: InputMaybe; - lords_costGT?: InputMaybe; - lords_costGTE?: InputMaybe; - lords_costIN?: InputMaybe>>; - lords_costLIKE?: InputMaybe; - lords_costLT?: InputMaybe; - lords_costLTE?: InputMaybe; - lords_costNEQ?: InputMaybe; - lords_costNOTIN?: InputMaybe>>; - lords_costNOTLIKE?: InputMaybe; - lp_fee_denom?: InputMaybe; - lp_fee_denomEQ?: InputMaybe; - lp_fee_denomGT?: InputMaybe; - lp_fee_denomGTE?: InputMaybe; - lp_fee_denomIN?: InputMaybe>>; - lp_fee_denomLIKE?: InputMaybe; - lp_fee_denomLT?: InputMaybe; - lp_fee_denomLTE?: InputMaybe; - lp_fee_denomNEQ?: InputMaybe; - lp_fee_denomNOTIN?: InputMaybe>>; - lp_fee_denomNOTLIKE?: InputMaybe; - lp_fee_num?: InputMaybe; - lp_fee_numEQ?: InputMaybe; - lp_fee_numGT?: InputMaybe; - lp_fee_numGTE?: InputMaybe; - lp_fee_numIN?: InputMaybe>>; - lp_fee_numLIKE?: InputMaybe; - lp_fee_numLT?: InputMaybe; - lp_fee_numLTE?: InputMaybe; - lp_fee_numNEQ?: InputMaybe; - lp_fee_numNOTIN?: InputMaybe>>; - lp_fee_numNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + lords_cost?: InputMaybe; + lords_costEQ?: InputMaybe; + lords_costGT?: InputMaybe; + lords_costGTE?: InputMaybe; + lords_costIN?: InputMaybe>>; + lords_costLIKE?: InputMaybe; + lords_costLT?: InputMaybe; + lords_costLTE?: InputMaybe; + lords_costNEQ?: InputMaybe; + lords_costNOTIN?: InputMaybe>>; + lords_costNOTLIKE?: InputMaybe; + lp_fee_denom?: InputMaybe; + lp_fee_denomEQ?: InputMaybe; + lp_fee_denomGT?: InputMaybe; + lp_fee_denomGTE?: InputMaybe; + lp_fee_denomIN?: InputMaybe>>; + lp_fee_denomLIKE?: InputMaybe; + lp_fee_denomLT?: InputMaybe; + lp_fee_denomLTE?: InputMaybe; + lp_fee_denomNEQ?: InputMaybe; + lp_fee_denomNOTIN?: InputMaybe>>; + lp_fee_denomNOTLIKE?: InputMaybe; + lp_fee_num?: InputMaybe; + lp_fee_numEQ?: InputMaybe; + lp_fee_numGT?: InputMaybe; + lp_fee_numGTE?: InputMaybe; + lp_fee_numIN?: InputMaybe>>; + lp_fee_numLIKE?: InputMaybe; + lp_fee_numLT?: InputMaybe; + lp_fee_numLTE?: InputMaybe; + lp_fee_numNEQ?: InputMaybe; + lp_fee_numNOTIN?: InputMaybe>>; + lp_fee_numNOTLIKE?: InputMaybe; }; export type S0_Eternum_BankOrder = { @@ -347,71 +347,71 @@ export type S0_Eternum_BankOrder = { }; export enum S0_Eternum_BankOrderField { - EntityId = 'ENTITY_ID', - Exists = 'EXISTS', - OwnerBridgeFeeDptPercent = 'OWNER_BRIDGE_FEE_DPT_PERCENT', - OwnerBridgeFeeWtdrPercent = 'OWNER_BRIDGE_FEE_WTDR_PERCENT', - OwnerFeeDenom = 'OWNER_FEE_DENOM', - OwnerFeeNum = 'OWNER_FEE_NUM' + EntityId = "ENTITY_ID", + Exists = "EXISTS", + OwnerBridgeFeeDptPercent = "OWNER_BRIDGE_FEE_DPT_PERCENT", + OwnerBridgeFeeWtdrPercent = "OWNER_BRIDGE_FEE_WTDR_PERCENT", + OwnerFeeDenom = "OWNER_FEE_DENOM", + OwnerFeeNum = "OWNER_FEE_NUM", } export type S0_Eternum_BankWhereInput = { - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - exists?: InputMaybe; - owner_bridge_fee_dpt_percent?: InputMaybe; - owner_bridge_fee_dpt_percentEQ?: InputMaybe; - owner_bridge_fee_dpt_percentGT?: InputMaybe; - owner_bridge_fee_dpt_percentGTE?: InputMaybe; - owner_bridge_fee_dpt_percentIN?: InputMaybe>>; - owner_bridge_fee_dpt_percentLIKE?: InputMaybe; - owner_bridge_fee_dpt_percentLT?: InputMaybe; - owner_bridge_fee_dpt_percentLTE?: InputMaybe; - owner_bridge_fee_dpt_percentNEQ?: InputMaybe; - owner_bridge_fee_dpt_percentNOTIN?: InputMaybe>>; - owner_bridge_fee_dpt_percentNOTLIKE?: InputMaybe; - owner_bridge_fee_wtdr_percent?: InputMaybe; - owner_bridge_fee_wtdr_percentEQ?: InputMaybe; - owner_bridge_fee_wtdr_percentGT?: InputMaybe; - owner_bridge_fee_wtdr_percentGTE?: InputMaybe; - owner_bridge_fee_wtdr_percentIN?: InputMaybe>>; - owner_bridge_fee_wtdr_percentLIKE?: InputMaybe; - owner_bridge_fee_wtdr_percentLT?: InputMaybe; - owner_bridge_fee_wtdr_percentLTE?: InputMaybe; - owner_bridge_fee_wtdr_percentNEQ?: InputMaybe; - owner_bridge_fee_wtdr_percentNOTIN?: InputMaybe>>; - owner_bridge_fee_wtdr_percentNOTLIKE?: InputMaybe; - owner_fee_denom?: InputMaybe; - owner_fee_denomEQ?: InputMaybe; - owner_fee_denomGT?: InputMaybe; - owner_fee_denomGTE?: InputMaybe; - owner_fee_denomIN?: InputMaybe>>; - owner_fee_denomLIKE?: InputMaybe; - owner_fee_denomLT?: InputMaybe; - owner_fee_denomLTE?: InputMaybe; - owner_fee_denomNEQ?: InputMaybe; - owner_fee_denomNOTIN?: InputMaybe>>; - owner_fee_denomNOTLIKE?: InputMaybe; - owner_fee_num?: InputMaybe; - owner_fee_numEQ?: InputMaybe; - owner_fee_numGT?: InputMaybe; - owner_fee_numGTE?: InputMaybe; - owner_fee_numIN?: InputMaybe>>; - owner_fee_numLIKE?: InputMaybe; - owner_fee_numLT?: InputMaybe; - owner_fee_numLTE?: InputMaybe; - owner_fee_numNEQ?: InputMaybe; - owner_fee_numNOTIN?: InputMaybe>>; - owner_fee_numNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + exists?: InputMaybe; + owner_bridge_fee_dpt_percent?: InputMaybe; + owner_bridge_fee_dpt_percentEQ?: InputMaybe; + owner_bridge_fee_dpt_percentGT?: InputMaybe; + owner_bridge_fee_dpt_percentGTE?: InputMaybe; + owner_bridge_fee_dpt_percentIN?: InputMaybe>>; + owner_bridge_fee_dpt_percentLIKE?: InputMaybe; + owner_bridge_fee_dpt_percentLT?: InputMaybe; + owner_bridge_fee_dpt_percentLTE?: InputMaybe; + owner_bridge_fee_dpt_percentNEQ?: InputMaybe; + owner_bridge_fee_dpt_percentNOTIN?: InputMaybe>>; + owner_bridge_fee_dpt_percentNOTLIKE?: InputMaybe; + owner_bridge_fee_wtdr_percent?: InputMaybe; + owner_bridge_fee_wtdr_percentEQ?: InputMaybe; + owner_bridge_fee_wtdr_percentGT?: InputMaybe; + owner_bridge_fee_wtdr_percentGTE?: InputMaybe; + owner_bridge_fee_wtdr_percentIN?: InputMaybe>>; + owner_bridge_fee_wtdr_percentLIKE?: InputMaybe; + owner_bridge_fee_wtdr_percentLT?: InputMaybe; + owner_bridge_fee_wtdr_percentLTE?: InputMaybe; + owner_bridge_fee_wtdr_percentNEQ?: InputMaybe; + owner_bridge_fee_wtdr_percentNOTIN?: InputMaybe>>; + owner_bridge_fee_wtdr_percentNOTLIKE?: InputMaybe; + owner_fee_denom?: InputMaybe; + owner_fee_denomEQ?: InputMaybe; + owner_fee_denomGT?: InputMaybe; + owner_fee_denomGTE?: InputMaybe; + owner_fee_denomIN?: InputMaybe>>; + owner_fee_denomLIKE?: InputMaybe; + owner_fee_denomLT?: InputMaybe; + owner_fee_denomLTE?: InputMaybe; + owner_fee_denomNEQ?: InputMaybe; + owner_fee_denomNOTIN?: InputMaybe>>; + owner_fee_denomNOTLIKE?: InputMaybe; + owner_fee_num?: InputMaybe; + owner_fee_numEQ?: InputMaybe; + owner_fee_numGT?: InputMaybe; + owner_fee_numGTE?: InputMaybe; + owner_fee_numIN?: InputMaybe>>; + owner_fee_numLIKE?: InputMaybe; + owner_fee_numLT?: InputMaybe; + owner_fee_numLTE?: InputMaybe; + owner_fee_numNEQ?: InputMaybe; + owner_fee_numNOTIN?: InputMaybe>>; + owner_fee_numNOTLIKE?: InputMaybe; }; export type S0_Eternum_BattleClaimDataOrder = { @@ -420,133 +420,133 @@ export type S0_Eternum_BattleClaimDataOrder = { }; export enum S0_Eternum_BattleClaimDataOrderField { - ClaimeeAddress = 'CLAIMEE_ADDRESS', - ClaimeeName = 'CLAIMEE_NAME', - Claimer = 'CLAIMER', - ClaimerArmyEntityId = 'CLAIMER_ARMY_ENTITY_ID', - ClaimerName = 'CLAIMER_NAME', - EventId = 'EVENT_ID', - Id = 'ID', - StructureEntityId = 'STRUCTURE_ENTITY_ID', - StructureType = 'STRUCTURE_TYPE', - Timestamp = 'TIMESTAMP', - X = 'X', - Y = 'Y' + ClaimeeAddress = "CLAIMEE_ADDRESS", + ClaimeeName = "CLAIMEE_NAME", + Claimer = "CLAIMER", + ClaimerArmyEntityId = "CLAIMER_ARMY_ENTITY_ID", + ClaimerName = "CLAIMER_NAME", + EventId = "EVENT_ID", + Id = "ID", + StructureEntityId = "STRUCTURE_ENTITY_ID", + StructureType = "STRUCTURE_TYPE", + Timestamp = "TIMESTAMP", + X = "X", + Y = "Y", } export type S0_Eternum_BattleClaimDataWhereInput = { - claimee_address?: InputMaybe; - claimee_addressEQ?: InputMaybe; - claimee_addressGT?: InputMaybe; - claimee_addressGTE?: InputMaybe; - claimee_addressIN?: InputMaybe>>; - claimee_addressLIKE?: InputMaybe; - claimee_addressLT?: InputMaybe; - claimee_addressLTE?: InputMaybe; - claimee_addressNEQ?: InputMaybe; - claimee_addressNOTIN?: InputMaybe>>; - claimee_addressNOTLIKE?: InputMaybe; - claimee_name?: InputMaybe; - claimee_nameEQ?: InputMaybe; - claimee_nameGT?: InputMaybe; - claimee_nameGTE?: InputMaybe; - claimee_nameIN?: InputMaybe>>; - claimee_nameLIKE?: InputMaybe; - claimee_nameLT?: InputMaybe; - claimee_nameLTE?: InputMaybe; - claimee_nameNEQ?: InputMaybe; - claimee_nameNOTIN?: InputMaybe>>; - claimee_nameNOTLIKE?: InputMaybe; - claimer?: InputMaybe; - claimerEQ?: InputMaybe; - claimerGT?: InputMaybe; - claimerGTE?: InputMaybe; - claimerIN?: InputMaybe>>; - claimerLIKE?: InputMaybe; - claimerLT?: InputMaybe; - claimerLTE?: InputMaybe; - claimerNEQ?: InputMaybe; - claimerNOTIN?: InputMaybe>>; - claimerNOTLIKE?: InputMaybe; - claimer_army_entity_id?: InputMaybe; - claimer_army_entity_idEQ?: InputMaybe; - claimer_army_entity_idGT?: InputMaybe; - claimer_army_entity_idGTE?: InputMaybe; - claimer_army_entity_idIN?: InputMaybe>>; - claimer_army_entity_idLIKE?: InputMaybe; - claimer_army_entity_idLT?: InputMaybe; - claimer_army_entity_idLTE?: InputMaybe; - claimer_army_entity_idNEQ?: InputMaybe; - claimer_army_entity_idNOTIN?: InputMaybe>>; - claimer_army_entity_idNOTLIKE?: InputMaybe; - claimer_name?: InputMaybe; - claimer_nameEQ?: InputMaybe; - claimer_nameGT?: InputMaybe; - claimer_nameGTE?: InputMaybe; - claimer_nameIN?: InputMaybe>>; - claimer_nameLIKE?: InputMaybe; - claimer_nameLT?: InputMaybe; - claimer_nameLTE?: InputMaybe; - claimer_nameNEQ?: InputMaybe; - claimer_nameNOTIN?: InputMaybe>>; - claimer_nameNOTLIKE?: InputMaybe; - event_id?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - structure_entity_id?: InputMaybe; - structure_entity_idEQ?: InputMaybe; - structure_entity_idGT?: InputMaybe; - structure_entity_idGTE?: InputMaybe; - structure_entity_idIN?: InputMaybe>>; - structure_entity_idLIKE?: InputMaybe; - structure_entity_idLT?: InputMaybe; - structure_entity_idLTE?: InputMaybe; - structure_entity_idNEQ?: InputMaybe; - structure_entity_idNOTIN?: InputMaybe>>; - structure_entity_idNOTLIKE?: InputMaybe; - structure_type?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - x?: InputMaybe; - xEQ?: InputMaybe; - xGT?: InputMaybe; - xGTE?: InputMaybe; - xIN?: InputMaybe>>; - xLIKE?: InputMaybe; - xLT?: InputMaybe; - xLTE?: InputMaybe; - xNEQ?: InputMaybe; - xNOTIN?: InputMaybe>>; - xNOTLIKE?: InputMaybe; - y?: InputMaybe; - yEQ?: InputMaybe; - yGT?: InputMaybe; - yGTE?: InputMaybe; - yIN?: InputMaybe>>; - yLIKE?: InputMaybe; - yLT?: InputMaybe; - yLTE?: InputMaybe; - yNEQ?: InputMaybe; - yNOTIN?: InputMaybe>>; - yNOTLIKE?: InputMaybe; + claimee_address?: InputMaybe; + claimee_addressEQ?: InputMaybe; + claimee_addressGT?: InputMaybe; + claimee_addressGTE?: InputMaybe; + claimee_addressIN?: InputMaybe>>; + claimee_addressLIKE?: InputMaybe; + claimee_addressLT?: InputMaybe; + claimee_addressLTE?: InputMaybe; + claimee_addressNEQ?: InputMaybe; + claimee_addressNOTIN?: InputMaybe>>; + claimee_addressNOTLIKE?: InputMaybe; + claimee_name?: InputMaybe; + claimee_nameEQ?: InputMaybe; + claimee_nameGT?: InputMaybe; + claimee_nameGTE?: InputMaybe; + claimee_nameIN?: InputMaybe>>; + claimee_nameLIKE?: InputMaybe; + claimee_nameLT?: InputMaybe; + claimee_nameLTE?: InputMaybe; + claimee_nameNEQ?: InputMaybe; + claimee_nameNOTIN?: InputMaybe>>; + claimee_nameNOTLIKE?: InputMaybe; + claimer?: InputMaybe; + claimerEQ?: InputMaybe; + claimerGT?: InputMaybe; + claimerGTE?: InputMaybe; + claimerIN?: InputMaybe>>; + claimerLIKE?: InputMaybe; + claimerLT?: InputMaybe; + claimerLTE?: InputMaybe; + claimerNEQ?: InputMaybe; + claimerNOTIN?: InputMaybe>>; + claimerNOTLIKE?: InputMaybe; + claimer_army_entity_id?: InputMaybe; + claimer_army_entity_idEQ?: InputMaybe; + claimer_army_entity_idGT?: InputMaybe; + claimer_army_entity_idGTE?: InputMaybe; + claimer_army_entity_idIN?: InputMaybe>>; + claimer_army_entity_idLIKE?: InputMaybe; + claimer_army_entity_idLT?: InputMaybe; + claimer_army_entity_idLTE?: InputMaybe; + claimer_army_entity_idNEQ?: InputMaybe; + claimer_army_entity_idNOTIN?: InputMaybe>>; + claimer_army_entity_idNOTLIKE?: InputMaybe; + claimer_name?: InputMaybe; + claimer_nameEQ?: InputMaybe; + claimer_nameGT?: InputMaybe; + claimer_nameGTE?: InputMaybe; + claimer_nameIN?: InputMaybe>>; + claimer_nameLIKE?: InputMaybe; + claimer_nameLT?: InputMaybe; + claimer_nameLTE?: InputMaybe; + claimer_nameNEQ?: InputMaybe; + claimer_nameNOTIN?: InputMaybe>>; + claimer_nameNOTLIKE?: InputMaybe; + event_id?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + structure_entity_id?: InputMaybe; + structure_entity_idEQ?: InputMaybe; + structure_entity_idGT?: InputMaybe; + structure_entity_idGTE?: InputMaybe; + structure_entity_idIN?: InputMaybe>>; + structure_entity_idLIKE?: InputMaybe; + structure_entity_idLT?: InputMaybe; + structure_entity_idLTE?: InputMaybe; + structure_entity_idNEQ?: InputMaybe; + structure_entity_idNOTIN?: InputMaybe>>; + structure_entity_idNOTLIKE?: InputMaybe; + structure_type?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + x?: InputMaybe; + xEQ?: InputMaybe; + xGT?: InputMaybe; + xGTE?: InputMaybe; + xIN?: InputMaybe>>; + xLIKE?: InputMaybe; + xLT?: InputMaybe; + xLTE?: InputMaybe; + xNEQ?: InputMaybe; + xNOTIN?: InputMaybe>>; + xNOTLIKE?: InputMaybe; + y?: InputMaybe; + yEQ?: InputMaybe; + yGT?: InputMaybe; + yGTE?: InputMaybe; + yIN?: InputMaybe>>; + yLIKE?: InputMaybe; + yLT?: InputMaybe; + yLTE?: InputMaybe; + yNEQ?: InputMaybe; + yNOTIN?: InputMaybe>>; + yNOTLIKE?: InputMaybe; }; export type S0_Eternum_BattleConfigOrder = { @@ -555,57 +555,57 @@ export type S0_Eternum_BattleConfigOrder = { }; export enum S0_Eternum_BattleConfigOrderField { - BattleDelaySeconds = 'BATTLE_DELAY_SECONDS', - ConfigId = 'CONFIG_ID', - HyperstructureImmunityTicks = 'HYPERSTRUCTURE_IMMUNITY_TICKS', - RegularImmunityTicks = 'REGULAR_IMMUNITY_TICKS' + BattleDelaySeconds = "BATTLE_DELAY_SECONDS", + ConfigId = "CONFIG_ID", + HyperstructureImmunityTicks = "HYPERSTRUCTURE_IMMUNITY_TICKS", + RegularImmunityTicks = "REGULAR_IMMUNITY_TICKS", } export type S0_Eternum_BattleConfigWhereInput = { - battle_delay_seconds?: InputMaybe; - battle_delay_secondsEQ?: InputMaybe; - battle_delay_secondsGT?: InputMaybe; - battle_delay_secondsGTE?: InputMaybe; - battle_delay_secondsIN?: InputMaybe>>; - battle_delay_secondsLIKE?: InputMaybe; - battle_delay_secondsLT?: InputMaybe; - battle_delay_secondsLTE?: InputMaybe; - battle_delay_secondsNEQ?: InputMaybe; - battle_delay_secondsNOTIN?: InputMaybe>>; - battle_delay_secondsNOTLIKE?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - hyperstructure_immunity_ticks?: InputMaybe; - hyperstructure_immunity_ticksEQ?: InputMaybe; - hyperstructure_immunity_ticksGT?: InputMaybe; - hyperstructure_immunity_ticksGTE?: InputMaybe; - hyperstructure_immunity_ticksIN?: InputMaybe>>; - hyperstructure_immunity_ticksLIKE?: InputMaybe; - hyperstructure_immunity_ticksLT?: InputMaybe; - hyperstructure_immunity_ticksLTE?: InputMaybe; - hyperstructure_immunity_ticksNEQ?: InputMaybe; - hyperstructure_immunity_ticksNOTIN?: InputMaybe>>; - hyperstructure_immunity_ticksNOTLIKE?: InputMaybe; - regular_immunity_ticks?: InputMaybe; - regular_immunity_ticksEQ?: InputMaybe; - regular_immunity_ticksGT?: InputMaybe; - regular_immunity_ticksGTE?: InputMaybe; - regular_immunity_ticksIN?: InputMaybe>>; - regular_immunity_ticksLIKE?: InputMaybe; - regular_immunity_ticksLT?: InputMaybe; - regular_immunity_ticksLTE?: InputMaybe; - regular_immunity_ticksNEQ?: InputMaybe; - regular_immunity_ticksNOTIN?: InputMaybe>>; - regular_immunity_ticksNOTLIKE?: InputMaybe; + battle_delay_seconds?: InputMaybe; + battle_delay_secondsEQ?: InputMaybe; + battle_delay_secondsGT?: InputMaybe; + battle_delay_secondsGTE?: InputMaybe; + battle_delay_secondsIN?: InputMaybe>>; + battle_delay_secondsLIKE?: InputMaybe; + battle_delay_secondsLT?: InputMaybe; + battle_delay_secondsLTE?: InputMaybe; + battle_delay_secondsNEQ?: InputMaybe; + battle_delay_secondsNOTIN?: InputMaybe>>; + battle_delay_secondsNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + hyperstructure_immunity_ticks?: InputMaybe; + hyperstructure_immunity_ticksEQ?: InputMaybe; + hyperstructure_immunity_ticksGT?: InputMaybe; + hyperstructure_immunity_ticksGTE?: InputMaybe; + hyperstructure_immunity_ticksIN?: InputMaybe>>; + hyperstructure_immunity_ticksLIKE?: InputMaybe; + hyperstructure_immunity_ticksLT?: InputMaybe; + hyperstructure_immunity_ticksLTE?: InputMaybe; + hyperstructure_immunity_ticksNEQ?: InputMaybe; + hyperstructure_immunity_ticksNOTIN?: InputMaybe>>; + hyperstructure_immunity_ticksNOTLIKE?: InputMaybe; + regular_immunity_ticks?: InputMaybe; + regular_immunity_ticksEQ?: InputMaybe; + regular_immunity_ticksGT?: InputMaybe; + regular_immunity_ticksGTE?: InputMaybe; + regular_immunity_ticksIN?: InputMaybe>>; + regular_immunity_ticksLIKE?: InputMaybe; + regular_immunity_ticksLT?: InputMaybe; + regular_immunity_ticksLTE?: InputMaybe; + regular_immunity_ticksNEQ?: InputMaybe; + regular_immunity_ticksNOTIN?: InputMaybe>>; + regular_immunity_ticksNOTLIKE?: InputMaybe; }; export type S0_Eternum_BattleJoinDataOrder = { @@ -614,121 +614,121 @@ export type S0_Eternum_BattleJoinDataOrder = { }; export enum S0_Eternum_BattleJoinDataOrderField { - BattleEntityId = 'BATTLE_ENTITY_ID', - DurationLeft = 'DURATION_LEFT', - EventId = 'EVENT_ID', - Id = 'ID', - Joiner = 'JOINER', - JoinerArmyEntityId = 'JOINER_ARMY_ENTITY_ID', - JoinerName = 'JOINER_NAME', - JoinerSide = 'JOINER_SIDE', - Timestamp = 'TIMESTAMP', - X = 'X', - Y = 'Y' + BattleEntityId = "BATTLE_ENTITY_ID", + DurationLeft = "DURATION_LEFT", + EventId = "EVENT_ID", + Id = "ID", + Joiner = "JOINER", + JoinerArmyEntityId = "JOINER_ARMY_ENTITY_ID", + JoinerName = "JOINER_NAME", + JoinerSide = "JOINER_SIDE", + Timestamp = "TIMESTAMP", + X = "X", + Y = "Y", } export type S0_Eternum_BattleJoinDataWhereInput = { - battle_entity_id?: InputMaybe; - battle_entity_idEQ?: InputMaybe; - battle_entity_idGT?: InputMaybe; - battle_entity_idGTE?: InputMaybe; - battle_entity_idIN?: InputMaybe>>; - battle_entity_idLIKE?: InputMaybe; - battle_entity_idLT?: InputMaybe; - battle_entity_idLTE?: InputMaybe; - battle_entity_idNEQ?: InputMaybe; - battle_entity_idNOTIN?: InputMaybe>>; - battle_entity_idNOTLIKE?: InputMaybe; - duration_left?: InputMaybe; - duration_leftEQ?: InputMaybe; - duration_leftGT?: InputMaybe; - duration_leftGTE?: InputMaybe; - duration_leftIN?: InputMaybe>>; - duration_leftLIKE?: InputMaybe; - duration_leftLT?: InputMaybe; - duration_leftLTE?: InputMaybe; - duration_leftNEQ?: InputMaybe; - duration_leftNOTIN?: InputMaybe>>; - duration_leftNOTLIKE?: InputMaybe; - event_id?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - joiner?: InputMaybe; - joinerEQ?: InputMaybe; - joinerGT?: InputMaybe; - joinerGTE?: InputMaybe; - joinerIN?: InputMaybe>>; - joinerLIKE?: InputMaybe; - joinerLT?: InputMaybe; - joinerLTE?: InputMaybe; - joinerNEQ?: InputMaybe; - joinerNOTIN?: InputMaybe>>; - joinerNOTLIKE?: InputMaybe; - joiner_army_entity_id?: InputMaybe; - joiner_army_entity_idEQ?: InputMaybe; - joiner_army_entity_idGT?: InputMaybe; - joiner_army_entity_idGTE?: InputMaybe; - joiner_army_entity_idIN?: InputMaybe>>; - joiner_army_entity_idLIKE?: InputMaybe; - joiner_army_entity_idLT?: InputMaybe; - joiner_army_entity_idLTE?: InputMaybe; - joiner_army_entity_idNEQ?: InputMaybe; - joiner_army_entity_idNOTIN?: InputMaybe>>; - joiner_army_entity_idNOTLIKE?: InputMaybe; - joiner_name?: InputMaybe; - joiner_nameEQ?: InputMaybe; - joiner_nameGT?: InputMaybe; - joiner_nameGTE?: InputMaybe; - joiner_nameIN?: InputMaybe>>; - joiner_nameLIKE?: InputMaybe; - joiner_nameLT?: InputMaybe; - joiner_nameLTE?: InputMaybe; - joiner_nameNEQ?: InputMaybe; - joiner_nameNOTIN?: InputMaybe>>; - joiner_nameNOTLIKE?: InputMaybe; - joiner_side?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - x?: InputMaybe; - xEQ?: InputMaybe; - xGT?: InputMaybe; - xGTE?: InputMaybe; - xIN?: InputMaybe>>; - xLIKE?: InputMaybe; - xLT?: InputMaybe; - xLTE?: InputMaybe; - xNEQ?: InputMaybe; - xNOTIN?: InputMaybe>>; - xNOTLIKE?: InputMaybe; - y?: InputMaybe; - yEQ?: InputMaybe; - yGT?: InputMaybe; - yGTE?: InputMaybe; - yIN?: InputMaybe>>; - yLIKE?: InputMaybe; - yLT?: InputMaybe; - yLTE?: InputMaybe; - yNEQ?: InputMaybe; - yNOTIN?: InputMaybe>>; - yNOTLIKE?: InputMaybe; + battle_entity_id?: InputMaybe; + battle_entity_idEQ?: InputMaybe; + battle_entity_idGT?: InputMaybe; + battle_entity_idGTE?: InputMaybe; + battle_entity_idIN?: InputMaybe>>; + battle_entity_idLIKE?: InputMaybe; + battle_entity_idLT?: InputMaybe; + battle_entity_idLTE?: InputMaybe; + battle_entity_idNEQ?: InputMaybe; + battle_entity_idNOTIN?: InputMaybe>>; + battle_entity_idNOTLIKE?: InputMaybe; + duration_left?: InputMaybe; + duration_leftEQ?: InputMaybe; + duration_leftGT?: InputMaybe; + duration_leftGTE?: InputMaybe; + duration_leftIN?: InputMaybe>>; + duration_leftLIKE?: InputMaybe; + duration_leftLT?: InputMaybe; + duration_leftLTE?: InputMaybe; + duration_leftNEQ?: InputMaybe; + duration_leftNOTIN?: InputMaybe>>; + duration_leftNOTLIKE?: InputMaybe; + event_id?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + joiner?: InputMaybe; + joinerEQ?: InputMaybe; + joinerGT?: InputMaybe; + joinerGTE?: InputMaybe; + joinerIN?: InputMaybe>>; + joinerLIKE?: InputMaybe; + joinerLT?: InputMaybe; + joinerLTE?: InputMaybe; + joinerNEQ?: InputMaybe; + joinerNOTIN?: InputMaybe>>; + joinerNOTLIKE?: InputMaybe; + joiner_army_entity_id?: InputMaybe; + joiner_army_entity_idEQ?: InputMaybe; + joiner_army_entity_idGT?: InputMaybe; + joiner_army_entity_idGTE?: InputMaybe; + joiner_army_entity_idIN?: InputMaybe>>; + joiner_army_entity_idLIKE?: InputMaybe; + joiner_army_entity_idLT?: InputMaybe; + joiner_army_entity_idLTE?: InputMaybe; + joiner_army_entity_idNEQ?: InputMaybe; + joiner_army_entity_idNOTIN?: InputMaybe>>; + joiner_army_entity_idNOTLIKE?: InputMaybe; + joiner_name?: InputMaybe; + joiner_nameEQ?: InputMaybe; + joiner_nameGT?: InputMaybe; + joiner_nameGTE?: InputMaybe; + joiner_nameIN?: InputMaybe>>; + joiner_nameLIKE?: InputMaybe; + joiner_nameLT?: InputMaybe; + joiner_nameLTE?: InputMaybe; + joiner_nameNEQ?: InputMaybe; + joiner_nameNOTIN?: InputMaybe>>; + joiner_nameNOTLIKE?: InputMaybe; + joiner_side?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + x?: InputMaybe; + xEQ?: InputMaybe; + xGT?: InputMaybe; + xGTE?: InputMaybe; + xIN?: InputMaybe>>; + xLIKE?: InputMaybe; + xLT?: InputMaybe; + xLTE?: InputMaybe; + xNEQ?: InputMaybe; + xNOTIN?: InputMaybe>>; + xNOTLIKE?: InputMaybe; + y?: InputMaybe; + yEQ?: InputMaybe; + yGT?: InputMaybe; + yGTE?: InputMaybe; + yIN?: InputMaybe>>; + yLIKE?: InputMaybe; + yLT?: InputMaybe; + yLTE?: InputMaybe; + yNEQ?: InputMaybe; + yNOTIN?: InputMaybe>>; + yNOTLIKE?: InputMaybe; }; export type S0_Eternum_BattleLeaveDataOrder = { @@ -737,121 +737,121 @@ export type S0_Eternum_BattleLeaveDataOrder = { }; export enum S0_Eternum_BattleLeaveDataOrderField { - BattleEntityId = 'BATTLE_ENTITY_ID', - DurationLeft = 'DURATION_LEFT', - EventId = 'EVENT_ID', - Id = 'ID', - Leaver = 'LEAVER', - LeaverArmyEntityId = 'LEAVER_ARMY_ENTITY_ID', - LeaverName = 'LEAVER_NAME', - LeaverSide = 'LEAVER_SIDE', - Timestamp = 'TIMESTAMP', - X = 'X', - Y = 'Y' + BattleEntityId = "BATTLE_ENTITY_ID", + DurationLeft = "DURATION_LEFT", + EventId = "EVENT_ID", + Id = "ID", + Leaver = "LEAVER", + LeaverArmyEntityId = "LEAVER_ARMY_ENTITY_ID", + LeaverName = "LEAVER_NAME", + LeaverSide = "LEAVER_SIDE", + Timestamp = "TIMESTAMP", + X = "X", + Y = "Y", } export type S0_Eternum_BattleLeaveDataWhereInput = { - battle_entity_id?: InputMaybe; - battle_entity_idEQ?: InputMaybe; - battle_entity_idGT?: InputMaybe; - battle_entity_idGTE?: InputMaybe; - battle_entity_idIN?: InputMaybe>>; - battle_entity_idLIKE?: InputMaybe; - battle_entity_idLT?: InputMaybe; - battle_entity_idLTE?: InputMaybe; - battle_entity_idNEQ?: InputMaybe; - battle_entity_idNOTIN?: InputMaybe>>; - battle_entity_idNOTLIKE?: InputMaybe; - duration_left?: InputMaybe; - duration_leftEQ?: InputMaybe; - duration_leftGT?: InputMaybe; - duration_leftGTE?: InputMaybe; - duration_leftIN?: InputMaybe>>; - duration_leftLIKE?: InputMaybe; - duration_leftLT?: InputMaybe; - duration_leftLTE?: InputMaybe; - duration_leftNEQ?: InputMaybe; - duration_leftNOTIN?: InputMaybe>>; - duration_leftNOTLIKE?: InputMaybe; - event_id?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - leaver?: InputMaybe; - leaverEQ?: InputMaybe; - leaverGT?: InputMaybe; - leaverGTE?: InputMaybe; - leaverIN?: InputMaybe>>; - leaverLIKE?: InputMaybe; - leaverLT?: InputMaybe; - leaverLTE?: InputMaybe; - leaverNEQ?: InputMaybe; - leaverNOTIN?: InputMaybe>>; - leaverNOTLIKE?: InputMaybe; - leaver_army_entity_id?: InputMaybe; - leaver_army_entity_idEQ?: InputMaybe; - leaver_army_entity_idGT?: InputMaybe; - leaver_army_entity_idGTE?: InputMaybe; - leaver_army_entity_idIN?: InputMaybe>>; - leaver_army_entity_idLIKE?: InputMaybe; - leaver_army_entity_idLT?: InputMaybe; - leaver_army_entity_idLTE?: InputMaybe; - leaver_army_entity_idNEQ?: InputMaybe; - leaver_army_entity_idNOTIN?: InputMaybe>>; - leaver_army_entity_idNOTLIKE?: InputMaybe; - leaver_name?: InputMaybe; - leaver_nameEQ?: InputMaybe; - leaver_nameGT?: InputMaybe; - leaver_nameGTE?: InputMaybe; - leaver_nameIN?: InputMaybe>>; - leaver_nameLIKE?: InputMaybe; - leaver_nameLT?: InputMaybe; - leaver_nameLTE?: InputMaybe; - leaver_nameNEQ?: InputMaybe; - leaver_nameNOTIN?: InputMaybe>>; - leaver_nameNOTLIKE?: InputMaybe; - leaver_side?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - x?: InputMaybe; - xEQ?: InputMaybe; - xGT?: InputMaybe; - xGTE?: InputMaybe; - xIN?: InputMaybe>>; - xLIKE?: InputMaybe; - xLT?: InputMaybe; - xLTE?: InputMaybe; - xNEQ?: InputMaybe; - xNOTIN?: InputMaybe>>; - xNOTLIKE?: InputMaybe; - y?: InputMaybe; - yEQ?: InputMaybe; - yGT?: InputMaybe; - yGTE?: InputMaybe; - yIN?: InputMaybe>>; - yLIKE?: InputMaybe; - yLT?: InputMaybe; - yLTE?: InputMaybe; - yNEQ?: InputMaybe; - yNOTIN?: InputMaybe>>; - yNOTLIKE?: InputMaybe; + battle_entity_id?: InputMaybe; + battle_entity_idEQ?: InputMaybe; + battle_entity_idGT?: InputMaybe; + battle_entity_idGTE?: InputMaybe; + battle_entity_idIN?: InputMaybe>>; + battle_entity_idLIKE?: InputMaybe; + battle_entity_idLT?: InputMaybe; + battle_entity_idLTE?: InputMaybe; + battle_entity_idNEQ?: InputMaybe; + battle_entity_idNOTIN?: InputMaybe>>; + battle_entity_idNOTLIKE?: InputMaybe; + duration_left?: InputMaybe; + duration_leftEQ?: InputMaybe; + duration_leftGT?: InputMaybe; + duration_leftGTE?: InputMaybe; + duration_leftIN?: InputMaybe>>; + duration_leftLIKE?: InputMaybe; + duration_leftLT?: InputMaybe; + duration_leftLTE?: InputMaybe; + duration_leftNEQ?: InputMaybe; + duration_leftNOTIN?: InputMaybe>>; + duration_leftNOTLIKE?: InputMaybe; + event_id?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + leaver?: InputMaybe; + leaverEQ?: InputMaybe; + leaverGT?: InputMaybe; + leaverGTE?: InputMaybe; + leaverIN?: InputMaybe>>; + leaverLIKE?: InputMaybe; + leaverLT?: InputMaybe; + leaverLTE?: InputMaybe; + leaverNEQ?: InputMaybe; + leaverNOTIN?: InputMaybe>>; + leaverNOTLIKE?: InputMaybe; + leaver_army_entity_id?: InputMaybe; + leaver_army_entity_idEQ?: InputMaybe; + leaver_army_entity_idGT?: InputMaybe; + leaver_army_entity_idGTE?: InputMaybe; + leaver_army_entity_idIN?: InputMaybe>>; + leaver_army_entity_idLIKE?: InputMaybe; + leaver_army_entity_idLT?: InputMaybe; + leaver_army_entity_idLTE?: InputMaybe; + leaver_army_entity_idNEQ?: InputMaybe; + leaver_army_entity_idNOTIN?: InputMaybe>>; + leaver_army_entity_idNOTLIKE?: InputMaybe; + leaver_name?: InputMaybe; + leaver_nameEQ?: InputMaybe; + leaver_nameGT?: InputMaybe; + leaver_nameGTE?: InputMaybe; + leaver_nameIN?: InputMaybe>>; + leaver_nameLIKE?: InputMaybe; + leaver_nameLT?: InputMaybe; + leaver_nameLTE?: InputMaybe; + leaver_nameNEQ?: InputMaybe; + leaver_nameNOTIN?: InputMaybe>>; + leaver_nameNOTLIKE?: InputMaybe; + leaver_side?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + x?: InputMaybe; + xEQ?: InputMaybe; + xGT?: InputMaybe; + xGTE?: InputMaybe; + xIN?: InputMaybe>>; + xLIKE?: InputMaybe; + xLT?: InputMaybe; + xLTE?: InputMaybe; + xNEQ?: InputMaybe; + xNOTIN?: InputMaybe>>; + xNOTLIKE?: InputMaybe; + y?: InputMaybe; + yEQ?: InputMaybe; + yGT?: InputMaybe; + yGTE?: InputMaybe; + yIN?: InputMaybe>>; + yLIKE?: InputMaybe; + yLT?: InputMaybe; + yLTE?: InputMaybe; + yNEQ?: InputMaybe; + yNOTIN?: InputMaybe>>; + yNOTLIKE?: InputMaybe; }; export type S0_Eternum_BattleOrder = { @@ -860,20 +860,20 @@ export type S0_Eternum_BattleOrder = { }; export enum S0_Eternum_BattleOrderField { - AttackersResourcesEscrowId = 'ATTACKERS_RESOURCES_ESCROW_ID', - AttackArmy = 'ATTACK_ARMY', - AttackArmyHealth = 'ATTACK_ARMY_HEALTH', - AttackArmyLifetime = 'ATTACK_ARMY_LIFETIME', - AttackDelta = 'ATTACK_DELTA', - DefenceArmy = 'DEFENCE_ARMY', - DefenceArmyHealth = 'DEFENCE_ARMY_HEALTH', - DefenceArmyLifetime = 'DEFENCE_ARMY_LIFETIME', - DefenceDelta = 'DEFENCE_DELTA', - DefendersResourcesEscrowId = 'DEFENDERS_RESOURCES_ESCROW_ID', - DurationLeft = 'DURATION_LEFT', - EntityId = 'ENTITY_ID', - LastUpdated = 'LAST_UPDATED', - StartAt = 'START_AT' + AttackersResourcesEscrowId = "ATTACKERS_RESOURCES_ESCROW_ID", + AttackArmy = "ATTACK_ARMY", + AttackArmyHealth = "ATTACK_ARMY_HEALTH", + AttackArmyLifetime = "ATTACK_ARMY_LIFETIME", + AttackDelta = "ATTACK_DELTA", + DefenceArmy = "DEFENCE_ARMY", + DefenceArmyHealth = "DEFENCE_ARMY_HEALTH", + DefenceArmyLifetime = "DEFENCE_ARMY_LIFETIME", + DefenceDelta = "DEFENCE_DELTA", + DefendersResourcesEscrowId = "DEFENDERS_RESOURCES_ESCROW_ID", + DurationLeft = "DURATION_LEFT", + EntityId = "ENTITY_ID", + LastUpdated = "LAST_UPDATED", + StartAt = "START_AT", } export type S0_Eternum_BattlePillageDataOrder = { @@ -882,152 +882,152 @@ export type S0_Eternum_BattlePillageDataOrder = { }; export enum S0_Eternum_BattlePillageDataOrderField { - AttackerLostTroops = 'ATTACKER_LOST_TROOPS', - DestroyedBuildingCategory = 'DESTROYED_BUILDING_CATEGORY', - EventId = 'EVENT_ID', - Id = 'ID', - PillagedResources = 'PILLAGED_RESOURCES', - PillagedStructureEntityId = 'PILLAGED_STRUCTURE_ENTITY_ID', - PillagedStructureOwner = 'PILLAGED_STRUCTURE_OWNER', - PillagedStructureOwnerName = 'PILLAGED_STRUCTURE_OWNER_NAME', - Pillager = 'PILLAGER', - PillagerArmyEntityId = 'PILLAGER_ARMY_ENTITY_ID', - PillagerName = 'PILLAGER_NAME', - PillagerRealmEntityId = 'PILLAGER_REALM_ENTITY_ID', - StructureLostTroops = 'STRUCTURE_LOST_TROOPS', - StructureType = 'STRUCTURE_TYPE', - Timestamp = 'TIMESTAMP', - Winner = 'WINNER', - X = 'X', - Y = 'Y' + AttackerLostTroops = "ATTACKER_LOST_TROOPS", + DestroyedBuildingCategory = "DESTROYED_BUILDING_CATEGORY", + EventId = "EVENT_ID", + Id = "ID", + PillagedResources = "PILLAGED_RESOURCES", + PillagedStructureEntityId = "PILLAGED_STRUCTURE_ENTITY_ID", + PillagedStructureOwner = "PILLAGED_STRUCTURE_OWNER", + PillagedStructureOwnerName = "PILLAGED_STRUCTURE_OWNER_NAME", + Pillager = "PILLAGER", + PillagerArmyEntityId = "PILLAGER_ARMY_ENTITY_ID", + PillagerName = "PILLAGER_NAME", + PillagerRealmEntityId = "PILLAGER_REALM_ENTITY_ID", + StructureLostTroops = "STRUCTURE_LOST_TROOPS", + StructureType = "STRUCTURE_TYPE", + Timestamp = "TIMESTAMP", + Winner = "WINNER", + X = "X", + Y = "Y", } export type S0_Eternum_BattlePillageDataWhereInput = { - destroyed_building_category?: InputMaybe; - event_id?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - pillaged_structure_entity_id?: InputMaybe; - pillaged_structure_entity_idEQ?: InputMaybe; - pillaged_structure_entity_idGT?: InputMaybe; - pillaged_structure_entity_idGTE?: InputMaybe; - pillaged_structure_entity_idIN?: InputMaybe>>; - pillaged_structure_entity_idLIKE?: InputMaybe; - pillaged_structure_entity_idLT?: InputMaybe; - pillaged_structure_entity_idLTE?: InputMaybe; - pillaged_structure_entity_idNEQ?: InputMaybe; - pillaged_structure_entity_idNOTIN?: InputMaybe>>; - pillaged_structure_entity_idNOTLIKE?: InputMaybe; - pillaged_structure_owner?: InputMaybe; - pillaged_structure_ownerEQ?: InputMaybe; - pillaged_structure_ownerGT?: InputMaybe; - pillaged_structure_ownerGTE?: InputMaybe; - pillaged_structure_ownerIN?: InputMaybe>>; - pillaged_structure_ownerLIKE?: InputMaybe; - pillaged_structure_ownerLT?: InputMaybe; - pillaged_structure_ownerLTE?: InputMaybe; - pillaged_structure_ownerNEQ?: InputMaybe; - pillaged_structure_ownerNOTIN?: InputMaybe>>; - pillaged_structure_ownerNOTLIKE?: InputMaybe; - pillaged_structure_owner_name?: InputMaybe; - pillaged_structure_owner_nameEQ?: InputMaybe; - pillaged_structure_owner_nameGT?: InputMaybe; - pillaged_structure_owner_nameGTE?: InputMaybe; - pillaged_structure_owner_nameIN?: InputMaybe>>; - pillaged_structure_owner_nameLIKE?: InputMaybe; - pillaged_structure_owner_nameLT?: InputMaybe; - pillaged_structure_owner_nameLTE?: InputMaybe; - pillaged_structure_owner_nameNEQ?: InputMaybe; - pillaged_structure_owner_nameNOTIN?: InputMaybe>>; - pillaged_structure_owner_nameNOTLIKE?: InputMaybe; - pillager?: InputMaybe; - pillagerEQ?: InputMaybe; - pillagerGT?: InputMaybe; - pillagerGTE?: InputMaybe; - pillagerIN?: InputMaybe>>; - pillagerLIKE?: InputMaybe; - pillagerLT?: InputMaybe; - pillagerLTE?: InputMaybe; - pillagerNEQ?: InputMaybe; - pillagerNOTIN?: InputMaybe>>; - pillagerNOTLIKE?: InputMaybe; - pillager_army_entity_id?: InputMaybe; - pillager_army_entity_idEQ?: InputMaybe; - pillager_army_entity_idGT?: InputMaybe; - pillager_army_entity_idGTE?: InputMaybe; - pillager_army_entity_idIN?: InputMaybe>>; - pillager_army_entity_idLIKE?: InputMaybe; - pillager_army_entity_idLT?: InputMaybe; - pillager_army_entity_idLTE?: InputMaybe; - pillager_army_entity_idNEQ?: InputMaybe; - pillager_army_entity_idNOTIN?: InputMaybe>>; - pillager_army_entity_idNOTLIKE?: InputMaybe; - pillager_name?: InputMaybe; - pillager_nameEQ?: InputMaybe; - pillager_nameGT?: InputMaybe; - pillager_nameGTE?: InputMaybe; - pillager_nameIN?: InputMaybe>>; - pillager_nameLIKE?: InputMaybe; - pillager_nameLT?: InputMaybe; - pillager_nameLTE?: InputMaybe; - pillager_nameNEQ?: InputMaybe; - pillager_nameNOTIN?: InputMaybe>>; - pillager_nameNOTLIKE?: InputMaybe; - pillager_realm_entity_id?: InputMaybe; - pillager_realm_entity_idEQ?: InputMaybe; - pillager_realm_entity_idGT?: InputMaybe; - pillager_realm_entity_idGTE?: InputMaybe; - pillager_realm_entity_idIN?: InputMaybe>>; - pillager_realm_entity_idLIKE?: InputMaybe; - pillager_realm_entity_idLT?: InputMaybe; - pillager_realm_entity_idLTE?: InputMaybe; - pillager_realm_entity_idNEQ?: InputMaybe; - pillager_realm_entity_idNOTIN?: InputMaybe>>; - pillager_realm_entity_idNOTLIKE?: InputMaybe; - structure_type?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - winner?: InputMaybe; - x?: InputMaybe; - xEQ?: InputMaybe; - xGT?: InputMaybe; - xGTE?: InputMaybe; - xIN?: InputMaybe>>; - xLIKE?: InputMaybe; - xLT?: InputMaybe; - xLTE?: InputMaybe; - xNEQ?: InputMaybe; - xNOTIN?: InputMaybe>>; - xNOTLIKE?: InputMaybe; - y?: InputMaybe; - yEQ?: InputMaybe; - yGT?: InputMaybe; - yGTE?: InputMaybe; - yIN?: InputMaybe>>; - yLIKE?: InputMaybe; - yLT?: InputMaybe; - yLTE?: InputMaybe; - yNEQ?: InputMaybe; - yNOTIN?: InputMaybe>>; - yNOTLIKE?: InputMaybe; + destroyed_building_category?: InputMaybe; + event_id?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + pillaged_structure_entity_id?: InputMaybe; + pillaged_structure_entity_idEQ?: InputMaybe; + pillaged_structure_entity_idGT?: InputMaybe; + pillaged_structure_entity_idGTE?: InputMaybe; + pillaged_structure_entity_idIN?: InputMaybe>>; + pillaged_structure_entity_idLIKE?: InputMaybe; + pillaged_structure_entity_idLT?: InputMaybe; + pillaged_structure_entity_idLTE?: InputMaybe; + pillaged_structure_entity_idNEQ?: InputMaybe; + pillaged_structure_entity_idNOTIN?: InputMaybe>>; + pillaged_structure_entity_idNOTLIKE?: InputMaybe; + pillaged_structure_owner?: InputMaybe; + pillaged_structure_ownerEQ?: InputMaybe; + pillaged_structure_ownerGT?: InputMaybe; + pillaged_structure_ownerGTE?: InputMaybe; + pillaged_structure_ownerIN?: InputMaybe>>; + pillaged_structure_ownerLIKE?: InputMaybe; + pillaged_structure_ownerLT?: InputMaybe; + pillaged_structure_ownerLTE?: InputMaybe; + pillaged_structure_ownerNEQ?: InputMaybe; + pillaged_structure_ownerNOTIN?: InputMaybe>>; + pillaged_structure_ownerNOTLIKE?: InputMaybe; + pillaged_structure_owner_name?: InputMaybe; + pillaged_structure_owner_nameEQ?: InputMaybe; + pillaged_structure_owner_nameGT?: InputMaybe; + pillaged_structure_owner_nameGTE?: InputMaybe; + pillaged_structure_owner_nameIN?: InputMaybe>>; + pillaged_structure_owner_nameLIKE?: InputMaybe; + pillaged_structure_owner_nameLT?: InputMaybe; + pillaged_structure_owner_nameLTE?: InputMaybe; + pillaged_structure_owner_nameNEQ?: InputMaybe; + pillaged_structure_owner_nameNOTIN?: InputMaybe>>; + pillaged_structure_owner_nameNOTLIKE?: InputMaybe; + pillager?: InputMaybe; + pillagerEQ?: InputMaybe; + pillagerGT?: InputMaybe; + pillagerGTE?: InputMaybe; + pillagerIN?: InputMaybe>>; + pillagerLIKE?: InputMaybe; + pillagerLT?: InputMaybe; + pillagerLTE?: InputMaybe; + pillagerNEQ?: InputMaybe; + pillagerNOTIN?: InputMaybe>>; + pillagerNOTLIKE?: InputMaybe; + pillager_army_entity_id?: InputMaybe; + pillager_army_entity_idEQ?: InputMaybe; + pillager_army_entity_idGT?: InputMaybe; + pillager_army_entity_idGTE?: InputMaybe; + pillager_army_entity_idIN?: InputMaybe>>; + pillager_army_entity_idLIKE?: InputMaybe; + pillager_army_entity_idLT?: InputMaybe; + pillager_army_entity_idLTE?: InputMaybe; + pillager_army_entity_idNEQ?: InputMaybe; + pillager_army_entity_idNOTIN?: InputMaybe>>; + pillager_army_entity_idNOTLIKE?: InputMaybe; + pillager_name?: InputMaybe; + pillager_nameEQ?: InputMaybe; + pillager_nameGT?: InputMaybe; + pillager_nameGTE?: InputMaybe; + pillager_nameIN?: InputMaybe>>; + pillager_nameLIKE?: InputMaybe; + pillager_nameLT?: InputMaybe; + pillager_nameLTE?: InputMaybe; + pillager_nameNEQ?: InputMaybe; + pillager_nameNOTIN?: InputMaybe>>; + pillager_nameNOTLIKE?: InputMaybe; + pillager_realm_entity_id?: InputMaybe; + pillager_realm_entity_idEQ?: InputMaybe; + pillager_realm_entity_idGT?: InputMaybe; + pillager_realm_entity_idGTE?: InputMaybe; + pillager_realm_entity_idIN?: InputMaybe>>; + pillager_realm_entity_idLIKE?: InputMaybe; + pillager_realm_entity_idLT?: InputMaybe; + pillager_realm_entity_idLTE?: InputMaybe; + pillager_realm_entity_idNEQ?: InputMaybe; + pillager_realm_entity_idNOTIN?: InputMaybe>>; + pillager_realm_entity_idNOTLIKE?: InputMaybe; + structure_type?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + winner?: InputMaybe; + x?: InputMaybe; + xEQ?: InputMaybe; + xGT?: InputMaybe; + xGTE?: InputMaybe; + xIN?: InputMaybe>>; + xLIKE?: InputMaybe; + xLT?: InputMaybe; + xLTE?: InputMaybe; + xNEQ?: InputMaybe; + xNOTIN?: InputMaybe>>; + xNOTLIKE?: InputMaybe; + y?: InputMaybe; + yEQ?: InputMaybe; + yGT?: InputMaybe; + yGTE?: InputMaybe; + yIN?: InputMaybe>>; + yLIKE?: InputMaybe; + yLT?: InputMaybe; + yLTE?: InputMaybe; + yNEQ?: InputMaybe; + yNOTIN?: InputMaybe>>; + yNOTLIKE?: InputMaybe; }; export type S0_Eternum_BattleStartDataOrder = { @@ -1036,248 +1036,248 @@ export type S0_Eternum_BattleStartDataOrder = { }; export enum S0_Eternum_BattleStartDataOrderField { - Attacker = 'ATTACKER', - AttackerArmyEntityId = 'ATTACKER_ARMY_ENTITY_ID', - AttackerName = 'ATTACKER_NAME', - BattleEntityId = 'BATTLE_ENTITY_ID', - Defender = 'DEFENDER', - DefenderArmyEntityId = 'DEFENDER_ARMY_ENTITY_ID', - DefenderName = 'DEFENDER_NAME', - DurationLeft = 'DURATION_LEFT', - EventId = 'EVENT_ID', - Id = 'ID', - StructureType = 'STRUCTURE_TYPE', - Timestamp = 'TIMESTAMP', - X = 'X', - Y = 'Y' + Attacker = "ATTACKER", + AttackerArmyEntityId = "ATTACKER_ARMY_ENTITY_ID", + AttackerName = "ATTACKER_NAME", + BattleEntityId = "BATTLE_ENTITY_ID", + Defender = "DEFENDER", + DefenderArmyEntityId = "DEFENDER_ARMY_ENTITY_ID", + DefenderName = "DEFENDER_NAME", + DurationLeft = "DURATION_LEFT", + EventId = "EVENT_ID", + Id = "ID", + StructureType = "STRUCTURE_TYPE", + Timestamp = "TIMESTAMP", + X = "X", + Y = "Y", } export type S0_Eternum_BattleStartDataWhereInput = { - attacker?: InputMaybe; - attackerEQ?: InputMaybe; - attackerGT?: InputMaybe; - attackerGTE?: InputMaybe; - attackerIN?: InputMaybe>>; - attackerLIKE?: InputMaybe; - attackerLT?: InputMaybe; - attackerLTE?: InputMaybe; - attackerNEQ?: InputMaybe; - attackerNOTIN?: InputMaybe>>; - attackerNOTLIKE?: InputMaybe; - attacker_army_entity_id?: InputMaybe; - attacker_army_entity_idEQ?: InputMaybe; - attacker_army_entity_idGT?: InputMaybe; - attacker_army_entity_idGTE?: InputMaybe; - attacker_army_entity_idIN?: InputMaybe>>; - attacker_army_entity_idLIKE?: InputMaybe; - attacker_army_entity_idLT?: InputMaybe; - attacker_army_entity_idLTE?: InputMaybe; - attacker_army_entity_idNEQ?: InputMaybe; - attacker_army_entity_idNOTIN?: InputMaybe>>; - attacker_army_entity_idNOTLIKE?: InputMaybe; - attacker_name?: InputMaybe; - attacker_nameEQ?: InputMaybe; - attacker_nameGT?: InputMaybe; - attacker_nameGTE?: InputMaybe; - attacker_nameIN?: InputMaybe>>; - attacker_nameLIKE?: InputMaybe; - attacker_nameLT?: InputMaybe; - attacker_nameLTE?: InputMaybe; - attacker_nameNEQ?: InputMaybe; - attacker_nameNOTIN?: InputMaybe>>; - attacker_nameNOTLIKE?: InputMaybe; - battle_entity_id?: InputMaybe; - battle_entity_idEQ?: InputMaybe; - battle_entity_idGT?: InputMaybe; - battle_entity_idGTE?: InputMaybe; - battle_entity_idIN?: InputMaybe>>; - battle_entity_idLIKE?: InputMaybe; - battle_entity_idLT?: InputMaybe; - battle_entity_idLTE?: InputMaybe; - battle_entity_idNEQ?: InputMaybe; - battle_entity_idNOTIN?: InputMaybe>>; - battle_entity_idNOTLIKE?: InputMaybe; - defender?: InputMaybe; - defenderEQ?: InputMaybe; - defenderGT?: InputMaybe; - defenderGTE?: InputMaybe; - defenderIN?: InputMaybe>>; - defenderLIKE?: InputMaybe; - defenderLT?: InputMaybe; - defenderLTE?: InputMaybe; - defenderNEQ?: InputMaybe; - defenderNOTIN?: InputMaybe>>; - defenderNOTLIKE?: InputMaybe; - defender_army_entity_id?: InputMaybe; - defender_army_entity_idEQ?: InputMaybe; - defender_army_entity_idGT?: InputMaybe; - defender_army_entity_idGTE?: InputMaybe; - defender_army_entity_idIN?: InputMaybe>>; - defender_army_entity_idLIKE?: InputMaybe; - defender_army_entity_idLT?: InputMaybe; - defender_army_entity_idLTE?: InputMaybe; - defender_army_entity_idNEQ?: InputMaybe; - defender_army_entity_idNOTIN?: InputMaybe>>; - defender_army_entity_idNOTLIKE?: InputMaybe; - defender_name?: InputMaybe; - defender_nameEQ?: InputMaybe; - defender_nameGT?: InputMaybe; - defender_nameGTE?: InputMaybe; - defender_nameIN?: InputMaybe>>; - defender_nameLIKE?: InputMaybe; - defender_nameLT?: InputMaybe; - defender_nameLTE?: InputMaybe; - defender_nameNEQ?: InputMaybe; - defender_nameNOTIN?: InputMaybe>>; - defender_nameNOTLIKE?: InputMaybe; - duration_left?: InputMaybe; - duration_leftEQ?: InputMaybe; - duration_leftGT?: InputMaybe; - duration_leftGTE?: InputMaybe; - duration_leftIN?: InputMaybe>>; - duration_leftLIKE?: InputMaybe; - duration_leftLT?: InputMaybe; - duration_leftLTE?: InputMaybe; - duration_leftNEQ?: InputMaybe; - duration_leftNOTIN?: InputMaybe>>; - duration_leftNOTLIKE?: InputMaybe; - event_id?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - structure_type?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - x?: InputMaybe; - xEQ?: InputMaybe; - xGT?: InputMaybe; - xGTE?: InputMaybe; - xIN?: InputMaybe>>; - xLIKE?: InputMaybe; - xLT?: InputMaybe; - xLTE?: InputMaybe; - xNEQ?: InputMaybe; - xNOTIN?: InputMaybe>>; - xNOTLIKE?: InputMaybe; - y?: InputMaybe; - yEQ?: InputMaybe; - yGT?: InputMaybe; - yGTE?: InputMaybe; - yIN?: InputMaybe>>; - yLIKE?: InputMaybe; - yLT?: InputMaybe; - yLTE?: InputMaybe; - yNEQ?: InputMaybe; - yNOTIN?: InputMaybe>>; - yNOTLIKE?: InputMaybe; + attacker?: InputMaybe; + attackerEQ?: InputMaybe; + attackerGT?: InputMaybe; + attackerGTE?: InputMaybe; + attackerIN?: InputMaybe>>; + attackerLIKE?: InputMaybe; + attackerLT?: InputMaybe; + attackerLTE?: InputMaybe; + attackerNEQ?: InputMaybe; + attackerNOTIN?: InputMaybe>>; + attackerNOTLIKE?: InputMaybe; + attacker_army_entity_id?: InputMaybe; + attacker_army_entity_idEQ?: InputMaybe; + attacker_army_entity_idGT?: InputMaybe; + attacker_army_entity_idGTE?: InputMaybe; + attacker_army_entity_idIN?: InputMaybe>>; + attacker_army_entity_idLIKE?: InputMaybe; + attacker_army_entity_idLT?: InputMaybe; + attacker_army_entity_idLTE?: InputMaybe; + attacker_army_entity_idNEQ?: InputMaybe; + attacker_army_entity_idNOTIN?: InputMaybe>>; + attacker_army_entity_idNOTLIKE?: InputMaybe; + attacker_name?: InputMaybe; + attacker_nameEQ?: InputMaybe; + attacker_nameGT?: InputMaybe; + attacker_nameGTE?: InputMaybe; + attacker_nameIN?: InputMaybe>>; + attacker_nameLIKE?: InputMaybe; + attacker_nameLT?: InputMaybe; + attacker_nameLTE?: InputMaybe; + attacker_nameNEQ?: InputMaybe; + attacker_nameNOTIN?: InputMaybe>>; + attacker_nameNOTLIKE?: InputMaybe; + battle_entity_id?: InputMaybe; + battle_entity_idEQ?: InputMaybe; + battle_entity_idGT?: InputMaybe; + battle_entity_idGTE?: InputMaybe; + battle_entity_idIN?: InputMaybe>>; + battle_entity_idLIKE?: InputMaybe; + battle_entity_idLT?: InputMaybe; + battle_entity_idLTE?: InputMaybe; + battle_entity_idNEQ?: InputMaybe; + battle_entity_idNOTIN?: InputMaybe>>; + battle_entity_idNOTLIKE?: InputMaybe; + defender?: InputMaybe; + defenderEQ?: InputMaybe; + defenderGT?: InputMaybe; + defenderGTE?: InputMaybe; + defenderIN?: InputMaybe>>; + defenderLIKE?: InputMaybe; + defenderLT?: InputMaybe; + defenderLTE?: InputMaybe; + defenderNEQ?: InputMaybe; + defenderNOTIN?: InputMaybe>>; + defenderNOTLIKE?: InputMaybe; + defender_army_entity_id?: InputMaybe; + defender_army_entity_idEQ?: InputMaybe; + defender_army_entity_idGT?: InputMaybe; + defender_army_entity_idGTE?: InputMaybe; + defender_army_entity_idIN?: InputMaybe>>; + defender_army_entity_idLIKE?: InputMaybe; + defender_army_entity_idLT?: InputMaybe; + defender_army_entity_idLTE?: InputMaybe; + defender_army_entity_idNEQ?: InputMaybe; + defender_army_entity_idNOTIN?: InputMaybe>>; + defender_army_entity_idNOTLIKE?: InputMaybe; + defender_name?: InputMaybe; + defender_nameEQ?: InputMaybe; + defender_nameGT?: InputMaybe; + defender_nameGTE?: InputMaybe; + defender_nameIN?: InputMaybe>>; + defender_nameLIKE?: InputMaybe; + defender_nameLT?: InputMaybe; + defender_nameLTE?: InputMaybe; + defender_nameNEQ?: InputMaybe; + defender_nameNOTIN?: InputMaybe>>; + defender_nameNOTLIKE?: InputMaybe; + duration_left?: InputMaybe; + duration_leftEQ?: InputMaybe; + duration_leftGT?: InputMaybe; + duration_leftGTE?: InputMaybe; + duration_leftIN?: InputMaybe>>; + duration_leftLIKE?: InputMaybe; + duration_leftLT?: InputMaybe; + duration_leftLTE?: InputMaybe; + duration_leftNEQ?: InputMaybe; + duration_leftNOTIN?: InputMaybe>>; + duration_leftNOTLIKE?: InputMaybe; + event_id?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + structure_type?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + x?: InputMaybe; + xEQ?: InputMaybe; + xGT?: InputMaybe; + xGTE?: InputMaybe; + xIN?: InputMaybe>>; + xLIKE?: InputMaybe; + xLT?: InputMaybe; + xLTE?: InputMaybe; + xNEQ?: InputMaybe; + xNOTIN?: InputMaybe>>; + xNOTLIKE?: InputMaybe; + y?: InputMaybe; + yEQ?: InputMaybe; + yGT?: InputMaybe; + yGTE?: InputMaybe; + yIN?: InputMaybe>>; + yLIKE?: InputMaybe; + yLT?: InputMaybe; + yLTE?: InputMaybe; + yNEQ?: InputMaybe; + yNOTIN?: InputMaybe>>; + yNOTLIKE?: InputMaybe; }; export type S0_Eternum_BattleWhereInput = { - attack_delta?: InputMaybe; - attack_deltaEQ?: InputMaybe; - attack_deltaGT?: InputMaybe; - attack_deltaGTE?: InputMaybe; - attack_deltaIN?: InputMaybe>>; - attack_deltaLIKE?: InputMaybe; - attack_deltaLT?: InputMaybe; - attack_deltaLTE?: InputMaybe; - attack_deltaNEQ?: InputMaybe; - attack_deltaNOTIN?: InputMaybe>>; - attack_deltaNOTLIKE?: InputMaybe; - attackers_resources_escrow_id?: InputMaybe; - attackers_resources_escrow_idEQ?: InputMaybe; - attackers_resources_escrow_idGT?: InputMaybe; - attackers_resources_escrow_idGTE?: InputMaybe; - attackers_resources_escrow_idIN?: InputMaybe>>; - attackers_resources_escrow_idLIKE?: InputMaybe; - attackers_resources_escrow_idLT?: InputMaybe; - attackers_resources_escrow_idLTE?: InputMaybe; - attackers_resources_escrow_idNEQ?: InputMaybe; - attackers_resources_escrow_idNOTIN?: InputMaybe>>; - attackers_resources_escrow_idNOTLIKE?: InputMaybe; - defence_delta?: InputMaybe; - defence_deltaEQ?: InputMaybe; - defence_deltaGT?: InputMaybe; - defence_deltaGTE?: InputMaybe; - defence_deltaIN?: InputMaybe>>; - defence_deltaLIKE?: InputMaybe; - defence_deltaLT?: InputMaybe; - defence_deltaLTE?: InputMaybe; - defence_deltaNEQ?: InputMaybe; - defence_deltaNOTIN?: InputMaybe>>; - defence_deltaNOTLIKE?: InputMaybe; - defenders_resources_escrow_id?: InputMaybe; - defenders_resources_escrow_idEQ?: InputMaybe; - defenders_resources_escrow_idGT?: InputMaybe; - defenders_resources_escrow_idGTE?: InputMaybe; - defenders_resources_escrow_idIN?: InputMaybe>>; - defenders_resources_escrow_idLIKE?: InputMaybe; - defenders_resources_escrow_idLT?: InputMaybe; - defenders_resources_escrow_idLTE?: InputMaybe; - defenders_resources_escrow_idNEQ?: InputMaybe; - defenders_resources_escrow_idNOTIN?: InputMaybe>>; - defenders_resources_escrow_idNOTLIKE?: InputMaybe; - duration_left?: InputMaybe; - duration_leftEQ?: InputMaybe; - duration_leftGT?: InputMaybe; - duration_leftGTE?: InputMaybe; - duration_leftIN?: InputMaybe>>; - duration_leftLIKE?: InputMaybe; - duration_leftLT?: InputMaybe; - duration_leftLTE?: InputMaybe; - duration_leftNEQ?: InputMaybe; - duration_leftNOTIN?: InputMaybe>>; - duration_leftNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - last_updated?: InputMaybe; - last_updatedEQ?: InputMaybe; - last_updatedGT?: InputMaybe; - last_updatedGTE?: InputMaybe; - last_updatedIN?: InputMaybe>>; - last_updatedLIKE?: InputMaybe; - last_updatedLT?: InputMaybe; - last_updatedLTE?: InputMaybe; - last_updatedNEQ?: InputMaybe; - last_updatedNOTIN?: InputMaybe>>; - last_updatedNOTLIKE?: InputMaybe; - start_at?: InputMaybe; - start_atEQ?: InputMaybe; - start_atGT?: InputMaybe; - start_atGTE?: InputMaybe; - start_atIN?: InputMaybe>>; - start_atLIKE?: InputMaybe; - start_atLT?: InputMaybe; - start_atLTE?: InputMaybe; - start_atNEQ?: InputMaybe; - start_atNOTIN?: InputMaybe>>; - start_atNOTLIKE?: InputMaybe; + attack_delta?: InputMaybe; + attack_deltaEQ?: InputMaybe; + attack_deltaGT?: InputMaybe; + attack_deltaGTE?: InputMaybe; + attack_deltaIN?: InputMaybe>>; + attack_deltaLIKE?: InputMaybe; + attack_deltaLT?: InputMaybe; + attack_deltaLTE?: InputMaybe; + attack_deltaNEQ?: InputMaybe; + attack_deltaNOTIN?: InputMaybe>>; + attack_deltaNOTLIKE?: InputMaybe; + attackers_resources_escrow_id?: InputMaybe; + attackers_resources_escrow_idEQ?: InputMaybe; + attackers_resources_escrow_idGT?: InputMaybe; + attackers_resources_escrow_idGTE?: InputMaybe; + attackers_resources_escrow_idIN?: InputMaybe>>; + attackers_resources_escrow_idLIKE?: InputMaybe; + attackers_resources_escrow_idLT?: InputMaybe; + attackers_resources_escrow_idLTE?: InputMaybe; + attackers_resources_escrow_idNEQ?: InputMaybe; + attackers_resources_escrow_idNOTIN?: InputMaybe>>; + attackers_resources_escrow_idNOTLIKE?: InputMaybe; + defence_delta?: InputMaybe; + defence_deltaEQ?: InputMaybe; + defence_deltaGT?: InputMaybe; + defence_deltaGTE?: InputMaybe; + defence_deltaIN?: InputMaybe>>; + defence_deltaLIKE?: InputMaybe; + defence_deltaLT?: InputMaybe; + defence_deltaLTE?: InputMaybe; + defence_deltaNEQ?: InputMaybe; + defence_deltaNOTIN?: InputMaybe>>; + defence_deltaNOTLIKE?: InputMaybe; + defenders_resources_escrow_id?: InputMaybe; + defenders_resources_escrow_idEQ?: InputMaybe; + defenders_resources_escrow_idGT?: InputMaybe; + defenders_resources_escrow_idGTE?: InputMaybe; + defenders_resources_escrow_idIN?: InputMaybe>>; + defenders_resources_escrow_idLIKE?: InputMaybe; + defenders_resources_escrow_idLT?: InputMaybe; + defenders_resources_escrow_idLTE?: InputMaybe; + defenders_resources_escrow_idNEQ?: InputMaybe; + defenders_resources_escrow_idNOTIN?: InputMaybe>>; + defenders_resources_escrow_idNOTLIKE?: InputMaybe; + duration_left?: InputMaybe; + duration_leftEQ?: InputMaybe; + duration_leftGT?: InputMaybe; + duration_leftGTE?: InputMaybe; + duration_leftIN?: InputMaybe>>; + duration_leftLIKE?: InputMaybe; + duration_leftLT?: InputMaybe; + duration_leftLTE?: InputMaybe; + duration_leftNEQ?: InputMaybe; + duration_leftNOTIN?: InputMaybe>>; + duration_leftNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + last_updated?: InputMaybe; + last_updatedEQ?: InputMaybe; + last_updatedGT?: InputMaybe; + last_updatedGTE?: InputMaybe; + last_updatedIN?: InputMaybe>>; + last_updatedLIKE?: InputMaybe; + last_updatedLT?: InputMaybe; + last_updatedLTE?: InputMaybe; + last_updatedNEQ?: InputMaybe; + last_updatedNOTIN?: InputMaybe>>; + last_updatedNOTLIKE?: InputMaybe; + start_at?: InputMaybe; + start_atEQ?: InputMaybe; + start_atGT?: InputMaybe; + start_atGTE?: InputMaybe; + start_atIN?: InputMaybe>>; + start_atLIKE?: InputMaybe; + start_atLT?: InputMaybe; + start_atLTE?: InputMaybe; + start_atNEQ?: InputMaybe; + start_atNOTIN?: InputMaybe>>; + start_atNOTLIKE?: InputMaybe; }; export type S0_Eternum_BuildingCategoryPopConfigOrder = { @@ -1286,47 +1286,47 @@ export type S0_Eternum_BuildingCategoryPopConfigOrder = { }; export enum S0_Eternum_BuildingCategoryPopConfigOrderField { - BuildingCategory = 'BUILDING_CATEGORY', - Capacity = 'CAPACITY', - ConfigId = 'CONFIG_ID', - Population = 'POPULATION' + BuildingCategory = "BUILDING_CATEGORY", + Capacity = "CAPACITY", + ConfigId = "CONFIG_ID", + Population = "POPULATION", } export type S0_Eternum_BuildingCategoryPopConfigWhereInput = { - building_category?: InputMaybe; - capacity?: InputMaybe; - capacityEQ?: InputMaybe; - capacityGT?: InputMaybe; - capacityGTE?: InputMaybe; - capacityIN?: InputMaybe>>; - capacityLIKE?: InputMaybe; - capacityLT?: InputMaybe; - capacityLTE?: InputMaybe; - capacityNEQ?: InputMaybe; - capacityNOTIN?: InputMaybe>>; - capacityNOTLIKE?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - population?: InputMaybe; - populationEQ?: InputMaybe; - populationGT?: InputMaybe; - populationGTE?: InputMaybe; - populationIN?: InputMaybe>>; - populationLIKE?: InputMaybe; - populationLT?: InputMaybe; - populationLTE?: InputMaybe; - populationNEQ?: InputMaybe; - populationNOTIN?: InputMaybe>>; - populationNOTLIKE?: InputMaybe; + building_category?: InputMaybe; + capacity?: InputMaybe; + capacityEQ?: InputMaybe; + capacityGT?: InputMaybe; + capacityGTE?: InputMaybe; + capacityIN?: InputMaybe>>; + capacityLIKE?: InputMaybe; + capacityLT?: InputMaybe; + capacityLTE?: InputMaybe; + capacityNEQ?: InputMaybe; + capacityNOTIN?: InputMaybe>>; + capacityNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + population?: InputMaybe; + populationEQ?: InputMaybe; + populationGT?: InputMaybe; + populationGTE?: InputMaybe; + populationIN?: InputMaybe>>; + populationLIKE?: InputMaybe; + populationLT?: InputMaybe; + populationLTE?: InputMaybe; + populationNEQ?: InputMaybe; + populationNOTIN?: InputMaybe>>; + populationNOTLIKE?: InputMaybe; }; export type S0_Eternum_BuildingConfigOrder = { @@ -1335,59 +1335,59 @@ export type S0_Eternum_BuildingConfigOrder = { }; export enum S0_Eternum_BuildingConfigOrderField { - Category = 'CATEGORY', - ConfigId = 'CONFIG_ID', - ResourceCostCount = 'RESOURCE_COST_COUNT', - ResourceCostId = 'RESOURCE_COST_ID', - ResourceType = 'RESOURCE_TYPE' + Category = "CATEGORY", + ConfigId = "CONFIG_ID", + ResourceCostCount = "RESOURCE_COST_COUNT", + ResourceCostId = "RESOURCE_COST_ID", + ResourceType = "RESOURCE_TYPE", } export type S0_Eternum_BuildingConfigWhereInput = { - category?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - resource_cost_count?: InputMaybe; - resource_cost_countEQ?: InputMaybe; - resource_cost_countGT?: InputMaybe; - resource_cost_countGTE?: InputMaybe; - resource_cost_countIN?: InputMaybe>>; - resource_cost_countLIKE?: InputMaybe; - resource_cost_countLT?: InputMaybe; - resource_cost_countLTE?: InputMaybe; - resource_cost_countNEQ?: InputMaybe; - resource_cost_countNOTIN?: InputMaybe>>; - resource_cost_countNOTLIKE?: InputMaybe; - resource_cost_id?: InputMaybe; - resource_cost_idEQ?: InputMaybe; - resource_cost_idGT?: InputMaybe; - resource_cost_idGTE?: InputMaybe; - resource_cost_idIN?: InputMaybe>>; - resource_cost_idLIKE?: InputMaybe; - resource_cost_idLT?: InputMaybe; - resource_cost_idLTE?: InputMaybe; - resource_cost_idNEQ?: InputMaybe; - resource_cost_idNOTIN?: InputMaybe>>; - resource_cost_idNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + category?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + resource_cost_count?: InputMaybe; + resource_cost_countEQ?: InputMaybe; + resource_cost_countGT?: InputMaybe; + resource_cost_countGTE?: InputMaybe; + resource_cost_countIN?: InputMaybe>>; + resource_cost_countLIKE?: InputMaybe; + resource_cost_countLT?: InputMaybe; + resource_cost_countLTE?: InputMaybe; + resource_cost_countNEQ?: InputMaybe; + resource_cost_countNOTIN?: InputMaybe>>; + resource_cost_countNOTLIKE?: InputMaybe; + resource_cost_id?: InputMaybe; + resource_cost_idEQ?: InputMaybe; + resource_cost_idGT?: InputMaybe; + resource_cost_idGTE?: InputMaybe; + resource_cost_idIN?: InputMaybe>>; + resource_cost_idLIKE?: InputMaybe; + resource_cost_idLT?: InputMaybe; + resource_cost_idLTE?: InputMaybe; + resource_cost_idNEQ?: InputMaybe; + resource_cost_idNOTIN?: InputMaybe>>; + resource_cost_idNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_BuildingGeneralConfigOrder = { @@ -1396,33 +1396,33 @@ export type S0_Eternum_BuildingGeneralConfigOrder = { }; export enum S0_Eternum_BuildingGeneralConfigOrderField { - BaseCostPercentIncrease = 'BASE_COST_PERCENT_INCREASE', - ConfigId = 'CONFIG_ID' + BaseCostPercentIncrease = "BASE_COST_PERCENT_INCREASE", + ConfigId = "CONFIG_ID", } export type S0_Eternum_BuildingGeneralConfigWhereInput = { - base_cost_percent_increase?: InputMaybe; - base_cost_percent_increaseEQ?: InputMaybe; - base_cost_percent_increaseGT?: InputMaybe; - base_cost_percent_increaseGTE?: InputMaybe; - base_cost_percent_increaseIN?: InputMaybe>>; - base_cost_percent_increaseLIKE?: InputMaybe; - base_cost_percent_increaseLT?: InputMaybe; - base_cost_percent_increaseLTE?: InputMaybe; - base_cost_percent_increaseNEQ?: InputMaybe; - base_cost_percent_increaseNOTIN?: InputMaybe>>; - base_cost_percent_increaseNOTLIKE?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; + base_cost_percent_increase?: InputMaybe; + base_cost_percent_increaseEQ?: InputMaybe; + base_cost_percent_increaseGT?: InputMaybe; + base_cost_percent_increaseGTE?: InputMaybe; + base_cost_percent_increaseIN?: InputMaybe>>; + base_cost_percent_increaseLIKE?: InputMaybe; + base_cost_percent_increaseLT?: InputMaybe; + base_cost_percent_increaseLTE?: InputMaybe; + base_cost_percent_increaseNEQ?: InputMaybe; + base_cost_percent_increaseNOTIN?: InputMaybe>>; + base_cost_percent_increaseNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_BuildingOrder = { @@ -1431,16 +1431,16 @@ export type S0_Eternum_BuildingOrder = { }; export enum S0_Eternum_BuildingOrderField { - BonusPercent = 'BONUS_PERCENT', - Category = 'CATEGORY', - EntityId = 'ENTITY_ID', - InnerCol = 'INNER_COL', - InnerRow = 'INNER_ROW', - OuterCol = 'OUTER_COL', - OuterEntityId = 'OUTER_ENTITY_ID', - OuterRow = 'OUTER_ROW', - Paused = 'PAUSED', - ProducedResourceType = 'PRODUCED_RESOURCE_TYPE' + BonusPercent = "BONUS_PERCENT", + Category = "CATEGORY", + EntityId = "ENTITY_ID", + InnerCol = "INNER_COL", + InnerRow = "INNER_ROW", + OuterCol = "OUTER_COL", + OuterEntityId = "OUTER_ENTITY_ID", + OuterRow = "OUTER_ROW", + Paused = "PAUSED", + ProducedResourceType = "PRODUCED_RESOURCE_TYPE", } export type S0_Eternum_BuildingQuantityv2Order = { @@ -1449,128 +1449,128 @@ export type S0_Eternum_BuildingQuantityv2Order = { }; export enum S0_Eternum_BuildingQuantityv2OrderField { - Category = 'CATEGORY', - EntityId = 'ENTITY_ID', - Value = 'VALUE' + Category = "CATEGORY", + EntityId = "ENTITY_ID", + Value = "VALUE", } export type S0_Eternum_BuildingQuantityv2WhereInput = { - category?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - value?: InputMaybe; - valueEQ?: InputMaybe; - valueGT?: InputMaybe; - valueGTE?: InputMaybe; - valueIN?: InputMaybe>>; - valueLIKE?: InputMaybe; - valueLT?: InputMaybe; - valueLTE?: InputMaybe; - valueNEQ?: InputMaybe; - valueNOTIN?: InputMaybe>>; - valueNOTLIKE?: InputMaybe; + category?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + value?: InputMaybe; + valueEQ?: InputMaybe; + valueGT?: InputMaybe; + valueGTE?: InputMaybe; + valueIN?: InputMaybe>>; + valueLIKE?: InputMaybe; + valueLT?: InputMaybe; + valueLTE?: InputMaybe; + valueNEQ?: InputMaybe; + valueNOTIN?: InputMaybe>>; + valueNOTLIKE?: InputMaybe; }; export type S0_Eternum_BuildingWhereInput = { - bonus_percent?: InputMaybe; - bonus_percentEQ?: InputMaybe; - bonus_percentGT?: InputMaybe; - bonus_percentGTE?: InputMaybe; - bonus_percentIN?: InputMaybe>>; - bonus_percentLIKE?: InputMaybe; - bonus_percentLT?: InputMaybe; - bonus_percentLTE?: InputMaybe; - bonus_percentNEQ?: InputMaybe; - bonus_percentNOTIN?: InputMaybe>>; - bonus_percentNOTLIKE?: InputMaybe; - category?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - inner_col?: InputMaybe; - inner_colEQ?: InputMaybe; - inner_colGT?: InputMaybe; - inner_colGTE?: InputMaybe; - inner_colIN?: InputMaybe>>; - inner_colLIKE?: InputMaybe; - inner_colLT?: InputMaybe; - inner_colLTE?: InputMaybe; - inner_colNEQ?: InputMaybe; - inner_colNOTIN?: InputMaybe>>; - inner_colNOTLIKE?: InputMaybe; - inner_row?: InputMaybe; - inner_rowEQ?: InputMaybe; - inner_rowGT?: InputMaybe; - inner_rowGTE?: InputMaybe; - inner_rowIN?: InputMaybe>>; - inner_rowLIKE?: InputMaybe; - inner_rowLT?: InputMaybe; - inner_rowLTE?: InputMaybe; - inner_rowNEQ?: InputMaybe; - inner_rowNOTIN?: InputMaybe>>; - inner_rowNOTLIKE?: InputMaybe; - outer_col?: InputMaybe; - outer_colEQ?: InputMaybe; - outer_colGT?: InputMaybe; - outer_colGTE?: InputMaybe; - outer_colIN?: InputMaybe>>; - outer_colLIKE?: InputMaybe; - outer_colLT?: InputMaybe; - outer_colLTE?: InputMaybe; - outer_colNEQ?: InputMaybe; - outer_colNOTIN?: InputMaybe>>; - outer_colNOTLIKE?: InputMaybe; - outer_entity_id?: InputMaybe; - outer_entity_idEQ?: InputMaybe; - outer_entity_idGT?: InputMaybe; - outer_entity_idGTE?: InputMaybe; - outer_entity_idIN?: InputMaybe>>; - outer_entity_idLIKE?: InputMaybe; - outer_entity_idLT?: InputMaybe; - outer_entity_idLTE?: InputMaybe; - outer_entity_idNEQ?: InputMaybe; - outer_entity_idNOTIN?: InputMaybe>>; - outer_entity_idNOTLIKE?: InputMaybe; - outer_row?: InputMaybe; - outer_rowEQ?: InputMaybe; - outer_rowGT?: InputMaybe; - outer_rowGTE?: InputMaybe; - outer_rowIN?: InputMaybe>>; - outer_rowLIKE?: InputMaybe; - outer_rowLT?: InputMaybe; - outer_rowLTE?: InputMaybe; - outer_rowNEQ?: InputMaybe; - outer_rowNOTIN?: InputMaybe>>; - outer_rowNOTLIKE?: InputMaybe; - paused?: InputMaybe; - produced_resource_type?: InputMaybe; - produced_resource_typeEQ?: InputMaybe; - produced_resource_typeGT?: InputMaybe; - produced_resource_typeGTE?: InputMaybe; - produced_resource_typeIN?: InputMaybe>>; - produced_resource_typeLIKE?: InputMaybe; - produced_resource_typeLT?: InputMaybe; - produced_resource_typeLTE?: InputMaybe; - produced_resource_typeNEQ?: InputMaybe; - produced_resource_typeNOTIN?: InputMaybe>>; - produced_resource_typeNOTLIKE?: InputMaybe; + bonus_percent?: InputMaybe; + bonus_percentEQ?: InputMaybe; + bonus_percentGT?: InputMaybe; + bonus_percentGTE?: InputMaybe; + bonus_percentIN?: InputMaybe>>; + bonus_percentLIKE?: InputMaybe; + bonus_percentLT?: InputMaybe; + bonus_percentLTE?: InputMaybe; + bonus_percentNEQ?: InputMaybe; + bonus_percentNOTIN?: InputMaybe>>; + bonus_percentNOTLIKE?: InputMaybe; + category?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + inner_col?: InputMaybe; + inner_colEQ?: InputMaybe; + inner_colGT?: InputMaybe; + inner_colGTE?: InputMaybe; + inner_colIN?: InputMaybe>>; + inner_colLIKE?: InputMaybe; + inner_colLT?: InputMaybe; + inner_colLTE?: InputMaybe; + inner_colNEQ?: InputMaybe; + inner_colNOTIN?: InputMaybe>>; + inner_colNOTLIKE?: InputMaybe; + inner_row?: InputMaybe; + inner_rowEQ?: InputMaybe; + inner_rowGT?: InputMaybe; + inner_rowGTE?: InputMaybe; + inner_rowIN?: InputMaybe>>; + inner_rowLIKE?: InputMaybe; + inner_rowLT?: InputMaybe; + inner_rowLTE?: InputMaybe; + inner_rowNEQ?: InputMaybe; + inner_rowNOTIN?: InputMaybe>>; + inner_rowNOTLIKE?: InputMaybe; + outer_col?: InputMaybe; + outer_colEQ?: InputMaybe; + outer_colGT?: InputMaybe; + outer_colGTE?: InputMaybe; + outer_colIN?: InputMaybe>>; + outer_colLIKE?: InputMaybe; + outer_colLT?: InputMaybe; + outer_colLTE?: InputMaybe; + outer_colNEQ?: InputMaybe; + outer_colNOTIN?: InputMaybe>>; + outer_colNOTLIKE?: InputMaybe; + outer_entity_id?: InputMaybe; + outer_entity_idEQ?: InputMaybe; + outer_entity_idGT?: InputMaybe; + outer_entity_idGTE?: InputMaybe; + outer_entity_idIN?: InputMaybe>>; + outer_entity_idLIKE?: InputMaybe; + outer_entity_idLT?: InputMaybe; + outer_entity_idLTE?: InputMaybe; + outer_entity_idNEQ?: InputMaybe; + outer_entity_idNOTIN?: InputMaybe>>; + outer_entity_idNOTLIKE?: InputMaybe; + outer_row?: InputMaybe; + outer_rowEQ?: InputMaybe; + outer_rowGT?: InputMaybe; + outer_rowGTE?: InputMaybe; + outer_rowIN?: InputMaybe>>; + outer_rowLIKE?: InputMaybe; + outer_rowLT?: InputMaybe; + outer_rowLTE?: InputMaybe; + outer_rowNEQ?: InputMaybe; + outer_rowNOTIN?: InputMaybe>>; + outer_rowNOTLIKE?: InputMaybe; + paused?: InputMaybe; + produced_resource_type?: InputMaybe; + produced_resource_typeEQ?: InputMaybe; + produced_resource_typeGT?: InputMaybe; + produced_resource_typeGTE?: InputMaybe; + produced_resource_typeIN?: InputMaybe>>; + produced_resource_typeLIKE?: InputMaybe; + produced_resource_typeLT?: InputMaybe; + produced_resource_typeLTE?: InputMaybe; + produced_resource_typeNEQ?: InputMaybe; + produced_resource_typeNOTIN?: InputMaybe>>; + produced_resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_BurnDonkeyOrder = { @@ -1579,57 +1579,57 @@ export type S0_Eternum_BurnDonkeyOrder = { }; export enum S0_Eternum_BurnDonkeyOrderField { - Amount = 'AMOUNT', - EntityId = 'ENTITY_ID', - PlayerAddress = 'PLAYER_ADDRESS', - Timestamp = 'TIMESTAMP' + Amount = "AMOUNT", + EntityId = "ENTITY_ID", + PlayerAddress = "PLAYER_ADDRESS", + Timestamp = "TIMESTAMP", } export type S0_Eternum_BurnDonkeyWhereInput = { - amount?: InputMaybe; - amountEQ?: InputMaybe; - amountGT?: InputMaybe; - amountGTE?: InputMaybe; - amountIN?: InputMaybe>>; - amountLIKE?: InputMaybe; - amountLT?: InputMaybe; - amountLTE?: InputMaybe; - amountNEQ?: InputMaybe; - amountNOTIN?: InputMaybe>>; - amountNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - player_address?: InputMaybe; - player_addressEQ?: InputMaybe; - player_addressGT?: InputMaybe; - player_addressGTE?: InputMaybe; - player_addressIN?: InputMaybe>>; - player_addressLIKE?: InputMaybe; - player_addressLT?: InputMaybe; - player_addressLTE?: InputMaybe; - player_addressNEQ?: InputMaybe; - player_addressNOTIN?: InputMaybe>>; - player_addressNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + amount?: InputMaybe; + amountEQ?: InputMaybe; + amountGT?: InputMaybe; + amountGTE?: InputMaybe; + amountIN?: InputMaybe>>; + amountLIKE?: InputMaybe; + amountLT?: InputMaybe; + amountLTE?: InputMaybe; + amountNEQ?: InputMaybe; + amountNOTIN?: InputMaybe>>; + amountNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + player_address?: InputMaybe; + player_addressEQ?: InputMaybe; + player_addressGT?: InputMaybe; + player_addressGTE?: InputMaybe; + player_addressIN?: InputMaybe>>; + player_addressLIKE?: InputMaybe; + player_addressLT?: InputMaybe; + player_addressLTE?: InputMaybe; + player_addressNEQ?: InputMaybe; + player_addressNOTIN?: InputMaybe>>; + player_addressNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_CancelOrderOrder = { @@ -1638,57 +1638,57 @@ export type S0_Eternum_CancelOrderOrder = { }; export enum S0_Eternum_CancelOrderOrderField { - MakerId = 'MAKER_ID', - TakerId = 'TAKER_ID', - Timestamp = 'TIMESTAMP', - TradeId = 'TRADE_ID' + MakerId = "MAKER_ID", + TakerId = "TAKER_ID", + Timestamp = "TIMESTAMP", + TradeId = "TRADE_ID", } export type S0_Eternum_CancelOrderWhereInput = { - maker_id?: InputMaybe; - maker_idEQ?: InputMaybe; - maker_idGT?: InputMaybe; - maker_idGTE?: InputMaybe; - maker_idIN?: InputMaybe>>; - maker_idLIKE?: InputMaybe; - maker_idLT?: InputMaybe; - maker_idLTE?: InputMaybe; - maker_idNEQ?: InputMaybe; - maker_idNOTIN?: InputMaybe>>; - maker_idNOTLIKE?: InputMaybe; - taker_id?: InputMaybe; - taker_idEQ?: InputMaybe; - taker_idGT?: InputMaybe; - taker_idGTE?: InputMaybe; - taker_idIN?: InputMaybe>>; - taker_idLIKE?: InputMaybe; - taker_idLT?: InputMaybe; - taker_idLTE?: InputMaybe; - taker_idNEQ?: InputMaybe; - taker_idNOTIN?: InputMaybe>>; - taker_idNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - trade_id?: InputMaybe; - trade_idEQ?: InputMaybe; - trade_idGT?: InputMaybe; - trade_idGTE?: InputMaybe; - trade_idIN?: InputMaybe>>; - trade_idLIKE?: InputMaybe; - trade_idLT?: InputMaybe; - trade_idLTE?: InputMaybe; - trade_idNEQ?: InputMaybe; - trade_idNOTIN?: InputMaybe>>; - trade_idNOTLIKE?: InputMaybe; + maker_id?: InputMaybe; + maker_idEQ?: InputMaybe; + maker_idGT?: InputMaybe; + maker_idGTE?: InputMaybe; + maker_idIN?: InputMaybe>>; + maker_idLIKE?: InputMaybe; + maker_idLT?: InputMaybe; + maker_idLTE?: InputMaybe; + maker_idNEQ?: InputMaybe; + maker_idNOTIN?: InputMaybe>>; + maker_idNOTLIKE?: InputMaybe; + taker_id?: InputMaybe; + taker_idEQ?: InputMaybe; + taker_idGT?: InputMaybe; + taker_idGTE?: InputMaybe; + taker_idIN?: InputMaybe>>; + taker_idLIKE?: InputMaybe; + taker_idLT?: InputMaybe; + taker_idLTE?: InputMaybe; + taker_idNEQ?: InputMaybe; + taker_idNOTIN?: InputMaybe>>; + taker_idNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + trade_id?: InputMaybe; + trade_idEQ?: InputMaybe; + trade_idGT?: InputMaybe; + trade_idGTE?: InputMaybe; + trade_idIN?: InputMaybe>>; + trade_idLIKE?: InputMaybe; + trade_idLT?: InputMaybe; + trade_idLTE?: InputMaybe; + trade_idNEQ?: InputMaybe; + trade_idNOTIN?: InputMaybe>>; + trade_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_CapacityCategoryOrder = { @@ -1697,23 +1697,23 @@ export type S0_Eternum_CapacityCategoryOrder = { }; export enum S0_Eternum_CapacityCategoryOrderField { - Category = 'CATEGORY', - EntityId = 'ENTITY_ID' + Category = "CATEGORY", + EntityId = "ENTITY_ID", } export type S0_Eternum_CapacityCategoryWhereInput = { - category?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; + category?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_CapacityConfigOrder = { @@ -1722,23 +1722,23 @@ export type S0_Eternum_CapacityConfigOrder = { }; export enum S0_Eternum_CapacityConfigOrderField { - Category = 'CATEGORY', - WeightGram = 'WEIGHT_GRAM' + Category = "CATEGORY", + WeightGram = "WEIGHT_GRAM", } export type S0_Eternum_CapacityConfigWhereInput = { - category?: InputMaybe; - weight_gram?: InputMaybe; - weight_gramEQ?: InputMaybe; - weight_gramGT?: InputMaybe; - weight_gramGTE?: InputMaybe; - weight_gramIN?: InputMaybe>>; - weight_gramLIKE?: InputMaybe; - weight_gramLT?: InputMaybe; - weight_gramLTE?: InputMaybe; - weight_gramNEQ?: InputMaybe; - weight_gramNOTIN?: InputMaybe>>; - weight_gramNOTLIKE?: InputMaybe; + category?: InputMaybe; + weight_gram?: InputMaybe; + weight_gramEQ?: InputMaybe; + weight_gramGT?: InputMaybe; + weight_gramGTE?: InputMaybe; + weight_gramIN?: InputMaybe>>; + weight_gramLIKE?: InputMaybe; + weight_gramLT?: InputMaybe; + weight_gramLTE?: InputMaybe; + weight_gramNEQ?: InputMaybe; + weight_gramNOTIN?: InputMaybe>>; + weight_gramNOTLIKE?: InputMaybe; }; export type S0_Eternum_ContributionOrder = { @@ -1747,57 +1747,57 @@ export type S0_Eternum_ContributionOrder = { }; export enum S0_Eternum_ContributionOrderField { - Amount = 'AMOUNT', - HyperstructureEntityId = 'HYPERSTRUCTURE_ENTITY_ID', - PlayerAddress = 'PLAYER_ADDRESS', - ResourceType = 'RESOURCE_TYPE' + Amount = "AMOUNT", + HyperstructureEntityId = "HYPERSTRUCTURE_ENTITY_ID", + PlayerAddress = "PLAYER_ADDRESS", + ResourceType = "RESOURCE_TYPE", } export type S0_Eternum_ContributionWhereInput = { - amount?: InputMaybe; - amountEQ?: InputMaybe; - amountGT?: InputMaybe; - amountGTE?: InputMaybe; - amountIN?: InputMaybe>>; - amountLIKE?: InputMaybe; - amountLT?: InputMaybe; - amountLTE?: InputMaybe; - amountNEQ?: InputMaybe; - amountNOTIN?: InputMaybe>>; - amountNOTLIKE?: InputMaybe; - hyperstructure_entity_id?: InputMaybe; - hyperstructure_entity_idEQ?: InputMaybe; - hyperstructure_entity_idGT?: InputMaybe; - hyperstructure_entity_idGTE?: InputMaybe; - hyperstructure_entity_idIN?: InputMaybe>>; - hyperstructure_entity_idLIKE?: InputMaybe; - hyperstructure_entity_idLT?: InputMaybe; - hyperstructure_entity_idLTE?: InputMaybe; - hyperstructure_entity_idNEQ?: InputMaybe; - hyperstructure_entity_idNOTIN?: InputMaybe>>; - hyperstructure_entity_idNOTLIKE?: InputMaybe; - player_address?: InputMaybe; - player_addressEQ?: InputMaybe; - player_addressGT?: InputMaybe; - player_addressGTE?: InputMaybe; - player_addressIN?: InputMaybe>>; - player_addressLIKE?: InputMaybe; - player_addressLT?: InputMaybe; - player_addressLTE?: InputMaybe; - player_addressNEQ?: InputMaybe; - player_addressNOTIN?: InputMaybe>>; - player_addressNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + amount?: InputMaybe; + amountEQ?: InputMaybe; + amountGT?: InputMaybe; + amountGTE?: InputMaybe; + amountIN?: InputMaybe>>; + amountLIKE?: InputMaybe; + amountLT?: InputMaybe; + amountLTE?: InputMaybe; + amountNEQ?: InputMaybe; + amountNOTIN?: InputMaybe>>; + amountNOTLIKE?: InputMaybe; + hyperstructure_entity_id?: InputMaybe; + hyperstructure_entity_idEQ?: InputMaybe; + hyperstructure_entity_idGT?: InputMaybe; + hyperstructure_entity_idGTE?: InputMaybe; + hyperstructure_entity_idIN?: InputMaybe>>; + hyperstructure_entity_idLIKE?: InputMaybe; + hyperstructure_entity_idLT?: InputMaybe; + hyperstructure_entity_idLTE?: InputMaybe; + hyperstructure_entity_idNEQ?: InputMaybe; + hyperstructure_entity_idNOTIN?: InputMaybe>>; + hyperstructure_entity_idNOTLIKE?: InputMaybe; + player_address?: InputMaybe; + player_addressEQ?: InputMaybe; + player_addressGT?: InputMaybe; + player_addressGTE?: InputMaybe; + player_addressIN?: InputMaybe>>; + player_addressLIKE?: InputMaybe; + player_addressLT?: InputMaybe; + player_addressLTE?: InputMaybe; + player_addressNEQ?: InputMaybe; + player_addressNOTIN?: InputMaybe>>; + player_addressNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_CreateGuildOrder = { @@ -1806,45 +1806,45 @@ export type S0_Eternum_CreateGuildOrder = { }; export enum S0_Eternum_CreateGuildOrderField { - GuildEntityId = 'GUILD_ENTITY_ID', - GuildName = 'GUILD_NAME', - Timestamp = 'TIMESTAMP' + GuildEntityId = "GUILD_ENTITY_ID", + GuildName = "GUILD_NAME", + Timestamp = "TIMESTAMP", } export type S0_Eternum_CreateGuildWhereInput = { - guild_entity_id?: InputMaybe; - guild_entity_idEQ?: InputMaybe; - guild_entity_idGT?: InputMaybe; - guild_entity_idGTE?: InputMaybe; - guild_entity_idIN?: InputMaybe>>; - guild_entity_idLIKE?: InputMaybe; - guild_entity_idLT?: InputMaybe; - guild_entity_idLTE?: InputMaybe; - guild_entity_idNEQ?: InputMaybe; - guild_entity_idNOTIN?: InputMaybe>>; - guild_entity_idNOTLIKE?: InputMaybe; - guild_name?: InputMaybe; - guild_nameEQ?: InputMaybe; - guild_nameGT?: InputMaybe; - guild_nameGTE?: InputMaybe; - guild_nameIN?: InputMaybe>>; - guild_nameLIKE?: InputMaybe; - guild_nameLT?: InputMaybe; - guild_nameLTE?: InputMaybe; - guild_nameNEQ?: InputMaybe; - guild_nameNOTIN?: InputMaybe>>; - guild_nameNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + guild_entity_id?: InputMaybe; + guild_entity_idEQ?: InputMaybe; + guild_entity_idGT?: InputMaybe; + guild_entity_idGTE?: InputMaybe; + guild_entity_idIN?: InputMaybe>>; + guild_entity_idLIKE?: InputMaybe; + guild_entity_idLT?: InputMaybe; + guild_entity_idLTE?: InputMaybe; + guild_entity_idNEQ?: InputMaybe; + guild_entity_idNOTIN?: InputMaybe>>; + guild_entity_idNOTLIKE?: InputMaybe; + guild_name?: InputMaybe; + guild_nameEQ?: InputMaybe; + guild_nameGT?: InputMaybe; + guild_nameGTE?: InputMaybe; + guild_nameIN?: InputMaybe>>; + guild_nameLIKE?: InputMaybe; + guild_nameLT?: InputMaybe; + guild_nameLTE?: InputMaybe; + guild_nameNEQ?: InputMaybe; + guild_nameNOTIN?: InputMaybe>>; + guild_nameNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_CreateOrderOrder = { @@ -1853,57 +1853,57 @@ export type S0_Eternum_CreateOrderOrder = { }; export enum S0_Eternum_CreateOrderOrderField { - MakerId = 'MAKER_ID', - TakerId = 'TAKER_ID', - Timestamp = 'TIMESTAMP', - TradeId = 'TRADE_ID' + MakerId = "MAKER_ID", + TakerId = "TAKER_ID", + Timestamp = "TIMESTAMP", + TradeId = "TRADE_ID", } export type S0_Eternum_CreateOrderWhereInput = { - maker_id?: InputMaybe; - maker_idEQ?: InputMaybe; - maker_idGT?: InputMaybe; - maker_idGTE?: InputMaybe; - maker_idIN?: InputMaybe>>; - maker_idLIKE?: InputMaybe; - maker_idLT?: InputMaybe; - maker_idLTE?: InputMaybe; - maker_idNEQ?: InputMaybe; - maker_idNOTIN?: InputMaybe>>; - maker_idNOTLIKE?: InputMaybe; - taker_id?: InputMaybe; - taker_idEQ?: InputMaybe; - taker_idGT?: InputMaybe; - taker_idGTE?: InputMaybe; - taker_idIN?: InputMaybe>>; - taker_idLIKE?: InputMaybe; - taker_idLT?: InputMaybe; - taker_idLTE?: InputMaybe; - taker_idNEQ?: InputMaybe; - taker_idNOTIN?: InputMaybe>>; - taker_idNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - trade_id?: InputMaybe; - trade_idEQ?: InputMaybe; - trade_idGT?: InputMaybe; - trade_idGTE?: InputMaybe; - trade_idIN?: InputMaybe>>; - trade_idLIKE?: InputMaybe; - trade_idLT?: InputMaybe; - trade_idLTE?: InputMaybe; - trade_idNEQ?: InputMaybe; - trade_idNOTIN?: InputMaybe>>; - trade_idNOTLIKE?: InputMaybe; + maker_id?: InputMaybe; + maker_idEQ?: InputMaybe; + maker_idGT?: InputMaybe; + maker_idGTE?: InputMaybe; + maker_idIN?: InputMaybe>>; + maker_idLIKE?: InputMaybe; + maker_idLT?: InputMaybe; + maker_idLTE?: InputMaybe; + maker_idNEQ?: InputMaybe; + maker_idNOTIN?: InputMaybe>>; + maker_idNOTLIKE?: InputMaybe; + taker_id?: InputMaybe; + taker_idEQ?: InputMaybe; + taker_idGT?: InputMaybe; + taker_idGTE?: InputMaybe; + taker_idIN?: InputMaybe>>; + taker_idLIKE?: InputMaybe; + taker_idLT?: InputMaybe; + taker_idLTE?: InputMaybe; + taker_idNEQ?: InputMaybe; + taker_idNOTIN?: InputMaybe>>; + taker_idNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + trade_id?: InputMaybe; + trade_idEQ?: InputMaybe; + trade_idGT?: InputMaybe; + trade_idGTE?: InputMaybe; + trade_idIN?: InputMaybe>>; + trade_idLIKE?: InputMaybe; + trade_idLT?: InputMaybe; + trade_idLTE?: InputMaybe; + trade_idNEQ?: InputMaybe; + trade_idNOTIN?: InputMaybe>>; + trade_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_DetachedResourceOrder = { @@ -1912,57 +1912,57 @@ export type S0_Eternum_DetachedResourceOrder = { }; export enum S0_Eternum_DetachedResourceOrderField { - EntityId = 'ENTITY_ID', - Index = 'INDEX', - ResourceAmount = 'RESOURCE_AMOUNT', - ResourceType = 'RESOURCE_TYPE' + EntityId = "ENTITY_ID", + Index = "INDEX", + ResourceAmount = "RESOURCE_AMOUNT", + ResourceType = "RESOURCE_TYPE", } export type S0_Eternum_DetachedResourceWhereInput = { - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - index?: InputMaybe; - indexEQ?: InputMaybe; - indexGT?: InputMaybe; - indexGTE?: InputMaybe; - indexIN?: InputMaybe>>; - indexLIKE?: InputMaybe; - indexLT?: InputMaybe; - indexLTE?: InputMaybe; - indexNEQ?: InputMaybe; - indexNOTIN?: InputMaybe>>; - indexNOTLIKE?: InputMaybe; - resource_amount?: InputMaybe; - resource_amountEQ?: InputMaybe; - resource_amountGT?: InputMaybe; - resource_amountGTE?: InputMaybe; - resource_amountIN?: InputMaybe>>; - resource_amountLIKE?: InputMaybe; - resource_amountLT?: InputMaybe; - resource_amountLTE?: InputMaybe; - resource_amountNEQ?: InputMaybe; - resource_amountNOTIN?: InputMaybe>>; - resource_amountNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + index?: InputMaybe; + indexEQ?: InputMaybe; + indexGT?: InputMaybe; + indexGTE?: InputMaybe; + indexIN?: InputMaybe>>; + indexLIKE?: InputMaybe; + indexLT?: InputMaybe; + indexLTE?: InputMaybe; + indexNEQ?: InputMaybe; + indexNOTIN?: InputMaybe>>; + indexNOTLIKE?: InputMaybe; + resource_amount?: InputMaybe; + resource_amountEQ?: InputMaybe; + resource_amountGT?: InputMaybe; + resource_amountGTE?: InputMaybe; + resource_amountIN?: InputMaybe>>; + resource_amountLIKE?: InputMaybe; + resource_amountLT?: InputMaybe; + resource_amountLTE?: InputMaybe; + resource_amountNEQ?: InputMaybe; + resource_amountNOTIN?: InputMaybe>>; + resource_amountNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_EntityNameOrder = { @@ -1971,33 +1971,33 @@ export type S0_Eternum_EntityNameOrder = { }; export enum S0_Eternum_EntityNameOrderField { - EntityId = 'ENTITY_ID', - Name = 'NAME' + EntityId = "ENTITY_ID", + Name = "NAME", } export type S0_Eternum_EntityNameWhereInput = { - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - name?: InputMaybe; - nameEQ?: InputMaybe; - nameGT?: InputMaybe; - nameGTE?: InputMaybe; - nameIN?: InputMaybe>>; - nameLIKE?: InputMaybe; - nameLT?: InputMaybe; - nameLTE?: InputMaybe; - nameNEQ?: InputMaybe; - nameNOTIN?: InputMaybe>>; - nameNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + name?: InputMaybe; + nameEQ?: InputMaybe; + nameGT?: InputMaybe; + nameGTE?: InputMaybe; + nameIN?: InputMaybe>>; + nameLIKE?: InputMaybe; + nameLT?: InputMaybe; + nameLTE?: InputMaybe; + nameNEQ?: InputMaybe; + nameNOTIN?: InputMaybe>>; + nameNOTLIKE?: InputMaybe; }; export type S0_Eternum_EntityOwnerOrder = { @@ -2006,33 +2006,33 @@ export type S0_Eternum_EntityOwnerOrder = { }; export enum S0_Eternum_EntityOwnerOrderField { - EntityId = 'ENTITY_ID', - EntityOwnerId = 'ENTITY_OWNER_ID' + EntityId = "ENTITY_ID", + EntityOwnerId = "ENTITY_OWNER_ID", } export type S0_Eternum_EntityOwnerWhereInput = { - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - entity_owner_id?: InputMaybe; - entity_owner_idEQ?: InputMaybe; - entity_owner_idGT?: InputMaybe; - entity_owner_idGTE?: InputMaybe; - entity_owner_idIN?: InputMaybe>>; - entity_owner_idLIKE?: InputMaybe; - entity_owner_idLT?: InputMaybe; - entity_owner_idLTE?: InputMaybe; - entity_owner_idNEQ?: InputMaybe; - entity_owner_idNOTIN?: InputMaybe>>; - entity_owner_idNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + entity_owner_id?: InputMaybe; + entity_owner_idEQ?: InputMaybe; + entity_owner_idGT?: InputMaybe; + entity_owner_idGTE?: InputMaybe; + entity_owner_idIN?: InputMaybe>>; + entity_owner_idLIKE?: InputMaybe; + entity_owner_idLT?: InputMaybe; + entity_owner_idLTE?: InputMaybe; + entity_owner_idNEQ?: InputMaybe; + entity_owner_idNOTIN?: InputMaybe>>; + entity_owner_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_EpochOrder = { @@ -2041,46 +2041,46 @@ export type S0_Eternum_EpochOrder = { }; export enum S0_Eternum_EpochOrderField { - HyperstructureEntityId = 'HYPERSTRUCTURE_ENTITY_ID', - Index = 'INDEX', - Owners = 'OWNERS', - StartTimestamp = 'START_TIMESTAMP' + HyperstructureEntityId = "HYPERSTRUCTURE_ENTITY_ID", + Index = "INDEX", + Owners = "OWNERS", + StartTimestamp = "START_TIMESTAMP", } export type S0_Eternum_EpochWhereInput = { - hyperstructure_entity_id?: InputMaybe; - hyperstructure_entity_idEQ?: InputMaybe; - hyperstructure_entity_idGT?: InputMaybe; - hyperstructure_entity_idGTE?: InputMaybe; - hyperstructure_entity_idIN?: InputMaybe>>; - hyperstructure_entity_idLIKE?: InputMaybe; - hyperstructure_entity_idLT?: InputMaybe; - hyperstructure_entity_idLTE?: InputMaybe; - hyperstructure_entity_idNEQ?: InputMaybe; - hyperstructure_entity_idNOTIN?: InputMaybe>>; - hyperstructure_entity_idNOTLIKE?: InputMaybe; - index?: InputMaybe; - indexEQ?: InputMaybe; - indexGT?: InputMaybe; - indexGTE?: InputMaybe; - indexIN?: InputMaybe>>; - indexLIKE?: InputMaybe; - indexLT?: InputMaybe; - indexLTE?: InputMaybe; - indexNEQ?: InputMaybe; - indexNOTIN?: InputMaybe>>; - indexNOTLIKE?: InputMaybe; - start_timestamp?: InputMaybe; - start_timestampEQ?: InputMaybe; - start_timestampGT?: InputMaybe; - start_timestampGTE?: InputMaybe; - start_timestampIN?: InputMaybe>>; - start_timestampLIKE?: InputMaybe; - start_timestampLT?: InputMaybe; - start_timestampLTE?: InputMaybe; - start_timestampNEQ?: InputMaybe; - start_timestampNOTIN?: InputMaybe>>; - start_timestampNOTLIKE?: InputMaybe; + hyperstructure_entity_id?: InputMaybe; + hyperstructure_entity_idEQ?: InputMaybe; + hyperstructure_entity_idGT?: InputMaybe; + hyperstructure_entity_idGTE?: InputMaybe; + hyperstructure_entity_idIN?: InputMaybe>>; + hyperstructure_entity_idLIKE?: InputMaybe; + hyperstructure_entity_idLT?: InputMaybe; + hyperstructure_entity_idLTE?: InputMaybe; + hyperstructure_entity_idNEQ?: InputMaybe; + hyperstructure_entity_idNOTIN?: InputMaybe>>; + hyperstructure_entity_idNOTLIKE?: InputMaybe; + index?: InputMaybe; + indexEQ?: InputMaybe; + indexGT?: InputMaybe; + indexGTE?: InputMaybe; + indexIN?: InputMaybe>>; + indexLIKE?: InputMaybe; + indexLT?: InputMaybe; + indexLTE?: InputMaybe; + indexNEQ?: InputMaybe; + indexNOTIN?: InputMaybe>>; + indexNOTLIKE?: InputMaybe; + start_timestamp?: InputMaybe; + start_timestampEQ?: InputMaybe; + start_timestampGT?: InputMaybe; + start_timestampGTE?: InputMaybe; + start_timestampIN?: InputMaybe>>; + start_timestampLIKE?: InputMaybe; + start_timestampLT?: InputMaybe; + start_timestampLTE?: InputMaybe; + start_timestampNEQ?: InputMaybe; + start_timestampNOTIN?: InputMaybe>>; + start_timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_FragmentMineDiscoveredOrder = { @@ -2089,57 +2089,57 @@ export type S0_Eternum_FragmentMineDiscoveredOrder = { }; export enum S0_Eternum_FragmentMineDiscoveredOrderField { - DiscoveredAt = 'DISCOVERED_AT', - EntityOwnerId = 'ENTITY_OWNER_ID', - MineEntityId = 'MINE_ENTITY_ID', - ProductionDeadlineTick = 'PRODUCTION_DEADLINE_TICK' + DiscoveredAt = "DISCOVERED_AT", + EntityOwnerId = "ENTITY_OWNER_ID", + MineEntityId = "MINE_ENTITY_ID", + ProductionDeadlineTick = "PRODUCTION_DEADLINE_TICK", } export type S0_Eternum_FragmentMineDiscoveredWhereInput = { - discovered_at?: InputMaybe; - discovered_atEQ?: InputMaybe; - discovered_atGT?: InputMaybe; - discovered_atGTE?: InputMaybe; - discovered_atIN?: InputMaybe>>; - discovered_atLIKE?: InputMaybe; - discovered_atLT?: InputMaybe; - discovered_atLTE?: InputMaybe; - discovered_atNEQ?: InputMaybe; - discovered_atNOTIN?: InputMaybe>>; - discovered_atNOTLIKE?: InputMaybe; - entity_owner_id?: InputMaybe; - entity_owner_idEQ?: InputMaybe; - entity_owner_idGT?: InputMaybe; - entity_owner_idGTE?: InputMaybe; - entity_owner_idIN?: InputMaybe>>; - entity_owner_idLIKE?: InputMaybe; - entity_owner_idLT?: InputMaybe; - entity_owner_idLTE?: InputMaybe; - entity_owner_idNEQ?: InputMaybe; - entity_owner_idNOTIN?: InputMaybe>>; - entity_owner_idNOTLIKE?: InputMaybe; - mine_entity_id?: InputMaybe; - mine_entity_idEQ?: InputMaybe; - mine_entity_idGT?: InputMaybe; - mine_entity_idGTE?: InputMaybe; - mine_entity_idIN?: InputMaybe>>; - mine_entity_idLIKE?: InputMaybe; - mine_entity_idLT?: InputMaybe; - mine_entity_idLTE?: InputMaybe; - mine_entity_idNEQ?: InputMaybe; - mine_entity_idNOTIN?: InputMaybe>>; - mine_entity_idNOTLIKE?: InputMaybe; - production_deadline_tick?: InputMaybe; - production_deadline_tickEQ?: InputMaybe; - production_deadline_tickGT?: InputMaybe; - production_deadline_tickGTE?: InputMaybe; - production_deadline_tickIN?: InputMaybe>>; - production_deadline_tickLIKE?: InputMaybe; - production_deadline_tickLT?: InputMaybe; - production_deadline_tickLTE?: InputMaybe; - production_deadline_tickNEQ?: InputMaybe; - production_deadline_tickNOTIN?: InputMaybe>>; - production_deadline_tickNOTLIKE?: InputMaybe; + discovered_at?: InputMaybe; + discovered_atEQ?: InputMaybe; + discovered_atGT?: InputMaybe; + discovered_atGTE?: InputMaybe; + discovered_atIN?: InputMaybe>>; + discovered_atLIKE?: InputMaybe; + discovered_atLT?: InputMaybe; + discovered_atLTE?: InputMaybe; + discovered_atNEQ?: InputMaybe; + discovered_atNOTIN?: InputMaybe>>; + discovered_atNOTLIKE?: InputMaybe; + entity_owner_id?: InputMaybe; + entity_owner_idEQ?: InputMaybe; + entity_owner_idGT?: InputMaybe; + entity_owner_idGTE?: InputMaybe; + entity_owner_idIN?: InputMaybe>>; + entity_owner_idLIKE?: InputMaybe; + entity_owner_idLT?: InputMaybe; + entity_owner_idLTE?: InputMaybe; + entity_owner_idNEQ?: InputMaybe; + entity_owner_idNOTIN?: InputMaybe>>; + entity_owner_idNOTLIKE?: InputMaybe; + mine_entity_id?: InputMaybe; + mine_entity_idEQ?: InputMaybe; + mine_entity_idGT?: InputMaybe; + mine_entity_idGTE?: InputMaybe; + mine_entity_idIN?: InputMaybe>>; + mine_entity_idLIKE?: InputMaybe; + mine_entity_idLT?: InputMaybe; + mine_entity_idLTE?: InputMaybe; + mine_entity_idNEQ?: InputMaybe; + mine_entity_idNOTIN?: InputMaybe>>; + mine_entity_idNOTLIKE?: InputMaybe; + production_deadline_tick?: InputMaybe; + production_deadline_tickEQ?: InputMaybe; + production_deadline_tickGT?: InputMaybe; + production_deadline_tickGTE?: InputMaybe; + production_deadline_tickIN?: InputMaybe>>; + production_deadline_tickLIKE?: InputMaybe; + production_deadline_tickLT?: InputMaybe; + production_deadline_tickLTE?: InputMaybe; + production_deadline_tickNEQ?: InputMaybe; + production_deadline_tickNOTIN?: InputMaybe>>; + production_deadline_tickNOTLIKE?: InputMaybe; }; export type S0_Eternum_GameEndedOrder = { @@ -2148,33 +2148,33 @@ export type S0_Eternum_GameEndedOrder = { }; export enum S0_Eternum_GameEndedOrderField { - Timestamp = 'TIMESTAMP', - WinnerAddress = 'WINNER_ADDRESS' + Timestamp = "TIMESTAMP", + WinnerAddress = "WINNER_ADDRESS", } export type S0_Eternum_GameEndedWhereInput = { - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - winner_address?: InputMaybe; - winner_addressEQ?: InputMaybe; - winner_addressGT?: InputMaybe; - winner_addressGTE?: InputMaybe; - winner_addressIN?: InputMaybe>>; - winner_addressLIKE?: InputMaybe; - winner_addressLT?: InputMaybe; - winner_addressLTE?: InputMaybe; - winner_addressNEQ?: InputMaybe; - winner_addressNOTIN?: InputMaybe>>; - winner_addressNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + winner_address?: InputMaybe; + winner_addressEQ?: InputMaybe; + winner_addressGT?: InputMaybe; + winner_addressGTE?: InputMaybe; + winner_addressIN?: InputMaybe>>; + winner_addressLIKE?: InputMaybe; + winner_addressLT?: InputMaybe; + winner_addressLTE?: InputMaybe; + winner_addressNEQ?: InputMaybe; + winner_addressNOTIN?: InputMaybe>>; + winner_addressNOTLIKE?: InputMaybe; }; export type S0_Eternum_GuildMemberOrder = { @@ -2183,33 +2183,33 @@ export type S0_Eternum_GuildMemberOrder = { }; export enum S0_Eternum_GuildMemberOrderField { - Address = 'ADDRESS', - GuildEntityId = 'GUILD_ENTITY_ID' + Address = "ADDRESS", + GuildEntityId = "GUILD_ENTITY_ID", } export type S0_Eternum_GuildMemberWhereInput = { - address?: InputMaybe; - addressEQ?: InputMaybe; - addressGT?: InputMaybe; - addressGTE?: InputMaybe; - addressIN?: InputMaybe>>; - addressLIKE?: InputMaybe; - addressLT?: InputMaybe; - addressLTE?: InputMaybe; - addressNEQ?: InputMaybe; - addressNOTIN?: InputMaybe>>; - addressNOTLIKE?: InputMaybe; - guild_entity_id?: InputMaybe; - guild_entity_idEQ?: InputMaybe; - guild_entity_idGT?: InputMaybe; - guild_entity_idGTE?: InputMaybe; - guild_entity_idIN?: InputMaybe>>; - guild_entity_idLIKE?: InputMaybe; - guild_entity_idLT?: InputMaybe; - guild_entity_idLTE?: InputMaybe; - guild_entity_idNEQ?: InputMaybe; - guild_entity_idNOTIN?: InputMaybe>>; - guild_entity_idNOTLIKE?: InputMaybe; + address?: InputMaybe; + addressEQ?: InputMaybe; + addressGT?: InputMaybe; + addressGTE?: InputMaybe; + addressIN?: InputMaybe>>; + addressLIKE?: InputMaybe; + addressLT?: InputMaybe; + addressLTE?: InputMaybe; + addressNEQ?: InputMaybe; + addressNOTIN?: InputMaybe>>; + addressNOTLIKE?: InputMaybe; + guild_entity_id?: InputMaybe; + guild_entity_idEQ?: InputMaybe; + guild_entity_idGT?: InputMaybe; + guild_entity_idGTE?: InputMaybe; + guild_entity_idIN?: InputMaybe>>; + guild_entity_idLIKE?: InputMaybe; + guild_entity_idLT?: InputMaybe; + guild_entity_idLTE?: InputMaybe; + guild_entity_idNEQ?: InputMaybe; + guild_entity_idNOTIN?: InputMaybe>>; + guild_entity_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_GuildOrder = { @@ -2218,35 +2218,35 @@ export type S0_Eternum_GuildOrder = { }; export enum S0_Eternum_GuildOrderField { - EntityId = 'ENTITY_ID', - IsPublic = 'IS_PUBLIC', - MemberCount = 'MEMBER_COUNT' + EntityId = "ENTITY_ID", + IsPublic = "IS_PUBLIC", + MemberCount = "MEMBER_COUNT", } export type S0_Eternum_GuildWhereInput = { - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - is_public?: InputMaybe; - member_count?: InputMaybe; - member_countEQ?: InputMaybe; - member_countGT?: InputMaybe; - member_countGTE?: InputMaybe; - member_countIN?: InputMaybe>>; - member_countLIKE?: InputMaybe; - member_countLT?: InputMaybe; - member_countLTE?: InputMaybe; - member_countNEQ?: InputMaybe; - member_countNOTIN?: InputMaybe>>; - member_countNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + is_public?: InputMaybe; + member_count?: InputMaybe; + member_countEQ?: InputMaybe; + member_countGT?: InputMaybe; + member_countGTE?: InputMaybe; + member_countIN?: InputMaybe>>; + member_countLIKE?: InputMaybe; + member_countLT?: InputMaybe; + member_countLTE?: InputMaybe; + member_countNEQ?: InputMaybe; + member_countNOTIN?: InputMaybe>>; + member_countNOTLIKE?: InputMaybe; }; export type S0_Eternum_GuildWhitelistOrder = { @@ -2255,35 +2255,35 @@ export type S0_Eternum_GuildWhitelistOrder = { }; export enum S0_Eternum_GuildWhitelistOrderField { - Address = 'ADDRESS', - GuildEntityId = 'GUILD_ENTITY_ID', - IsWhitelisted = 'IS_WHITELISTED' + Address = "ADDRESS", + GuildEntityId = "GUILD_ENTITY_ID", + IsWhitelisted = "IS_WHITELISTED", } export type S0_Eternum_GuildWhitelistWhereInput = { - address?: InputMaybe; - addressEQ?: InputMaybe; - addressGT?: InputMaybe; - addressGTE?: InputMaybe; - addressIN?: InputMaybe>>; - addressLIKE?: InputMaybe; - addressLT?: InputMaybe; - addressLTE?: InputMaybe; - addressNEQ?: InputMaybe; - addressNOTIN?: InputMaybe>>; - addressNOTLIKE?: InputMaybe; - guild_entity_id?: InputMaybe; - guild_entity_idEQ?: InputMaybe; - guild_entity_idGT?: InputMaybe; - guild_entity_idGTE?: InputMaybe; - guild_entity_idIN?: InputMaybe>>; - guild_entity_idLIKE?: InputMaybe; - guild_entity_idLT?: InputMaybe; - guild_entity_idLTE?: InputMaybe; - guild_entity_idNEQ?: InputMaybe; - guild_entity_idNOTIN?: InputMaybe>>; - guild_entity_idNOTLIKE?: InputMaybe; - is_whitelisted?: InputMaybe; + address?: InputMaybe; + addressEQ?: InputMaybe; + addressGT?: InputMaybe; + addressGTE?: InputMaybe; + addressIN?: InputMaybe>>; + addressLIKE?: InputMaybe; + addressLT?: InputMaybe; + addressLTE?: InputMaybe; + addressNEQ?: InputMaybe; + addressNOTIN?: InputMaybe>>; + addressNOTLIKE?: InputMaybe; + guild_entity_id?: InputMaybe; + guild_entity_idEQ?: InputMaybe; + guild_entity_idGT?: InputMaybe; + guild_entity_idGTE?: InputMaybe; + guild_entity_idIN?: InputMaybe>>; + guild_entity_idLIKE?: InputMaybe; + guild_entity_idLT?: InputMaybe; + guild_entity_idLTE?: InputMaybe; + guild_entity_idNEQ?: InputMaybe; + guild_entity_idNOTIN?: InputMaybe>>; + guild_entity_idNOTLIKE?: InputMaybe; + is_whitelisted?: InputMaybe; }; export type S0_Eternum_HealthOrder = { @@ -2292,45 +2292,45 @@ export type S0_Eternum_HealthOrder = { }; export enum S0_Eternum_HealthOrderField { - Current = 'CURRENT', - EntityId = 'ENTITY_ID', - Lifetime = 'LIFETIME' + Current = "CURRENT", + EntityId = "ENTITY_ID", + Lifetime = "LIFETIME", } export type S0_Eternum_HealthWhereInput = { - current?: InputMaybe; - currentEQ?: InputMaybe; - currentGT?: InputMaybe; - currentGTE?: InputMaybe; - currentIN?: InputMaybe>>; - currentLIKE?: InputMaybe; - currentLT?: InputMaybe; - currentLTE?: InputMaybe; - currentNEQ?: InputMaybe; - currentNOTIN?: InputMaybe>>; - currentNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - lifetime?: InputMaybe; - lifetimeEQ?: InputMaybe; - lifetimeGT?: InputMaybe; - lifetimeGTE?: InputMaybe; - lifetimeIN?: InputMaybe>>; - lifetimeLIKE?: InputMaybe; - lifetimeLT?: InputMaybe; - lifetimeLTE?: InputMaybe; - lifetimeNEQ?: InputMaybe; - lifetimeNOTIN?: InputMaybe>>; - lifetimeNOTLIKE?: InputMaybe; + current?: InputMaybe; + currentEQ?: InputMaybe; + currentGT?: InputMaybe; + currentGTE?: InputMaybe; + currentIN?: InputMaybe>>; + currentLIKE?: InputMaybe; + currentLT?: InputMaybe; + currentLTE?: InputMaybe; + currentNEQ?: InputMaybe; + currentNOTIN?: InputMaybe>>; + currentNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + lifetime?: InputMaybe; + lifetimeEQ?: InputMaybe; + lifetimeGT?: InputMaybe; + lifetimeGTE?: InputMaybe; + lifetimeIN?: InputMaybe>>; + lifetimeLIKE?: InputMaybe; + lifetimeLT?: InputMaybe; + lifetimeLTE?: InputMaybe; + lifetimeNEQ?: InputMaybe; + lifetimeNOTIN?: InputMaybe>>; + lifetimeNOTLIKE?: InputMaybe; }; export type S0_Eternum_HyperstructureCoOwnersChangeOrder = { @@ -2339,46 +2339,46 @@ export type S0_Eternum_HyperstructureCoOwnersChangeOrder = { }; export enum S0_Eternum_HyperstructureCoOwnersChangeOrderField { - CoOwners = 'CO_OWNERS', - HyperstructureEntityId = 'HYPERSTRUCTURE_ENTITY_ID', - Id = 'ID', - Timestamp = 'TIMESTAMP' + CoOwners = "CO_OWNERS", + HyperstructureEntityId = "HYPERSTRUCTURE_ENTITY_ID", + Id = "ID", + Timestamp = "TIMESTAMP", } export type S0_Eternum_HyperstructureCoOwnersChangeWhereInput = { - hyperstructure_entity_id?: InputMaybe; - hyperstructure_entity_idEQ?: InputMaybe; - hyperstructure_entity_idGT?: InputMaybe; - hyperstructure_entity_idGTE?: InputMaybe; - hyperstructure_entity_idIN?: InputMaybe>>; - hyperstructure_entity_idLIKE?: InputMaybe; - hyperstructure_entity_idLT?: InputMaybe; - hyperstructure_entity_idLTE?: InputMaybe; - hyperstructure_entity_idNEQ?: InputMaybe; - hyperstructure_entity_idNOTIN?: InputMaybe>>; - hyperstructure_entity_idNOTLIKE?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + hyperstructure_entity_id?: InputMaybe; + hyperstructure_entity_idEQ?: InputMaybe; + hyperstructure_entity_idGT?: InputMaybe; + hyperstructure_entity_idGTE?: InputMaybe; + hyperstructure_entity_idIN?: InputMaybe>>; + hyperstructure_entity_idLIKE?: InputMaybe; + hyperstructure_entity_idLT?: InputMaybe; + hyperstructure_entity_idLTE?: InputMaybe; + hyperstructure_entity_idNEQ?: InputMaybe; + hyperstructure_entity_idNOTIN?: InputMaybe>>; + hyperstructure_entity_idNOTLIKE?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_HyperstructureConfigOrder = { @@ -2387,69 +2387,69 @@ export type S0_Eternum_HyperstructureConfigOrder = { }; export enum S0_Eternum_HyperstructureConfigOrderField { - ConfigId = 'CONFIG_ID', - PointsForWin = 'POINTS_FOR_WIN', - PointsOnCompletion = 'POINTS_ON_COMPLETION', - PointsPerCycle = 'POINTS_PER_CYCLE', - TimeBetweenSharesChange = 'TIME_BETWEEN_SHARES_CHANGE' + ConfigId = "CONFIG_ID", + PointsForWin = "POINTS_FOR_WIN", + PointsOnCompletion = "POINTS_ON_COMPLETION", + PointsPerCycle = "POINTS_PER_CYCLE", + TimeBetweenSharesChange = "TIME_BETWEEN_SHARES_CHANGE", } export type S0_Eternum_HyperstructureConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - points_for_win?: InputMaybe; - points_for_winEQ?: InputMaybe; - points_for_winGT?: InputMaybe; - points_for_winGTE?: InputMaybe; - points_for_winIN?: InputMaybe>>; - points_for_winLIKE?: InputMaybe; - points_for_winLT?: InputMaybe; - points_for_winLTE?: InputMaybe; - points_for_winNEQ?: InputMaybe; - points_for_winNOTIN?: InputMaybe>>; - points_for_winNOTLIKE?: InputMaybe; - points_on_completion?: InputMaybe; - points_on_completionEQ?: InputMaybe; - points_on_completionGT?: InputMaybe; - points_on_completionGTE?: InputMaybe; - points_on_completionIN?: InputMaybe>>; - points_on_completionLIKE?: InputMaybe; - points_on_completionLT?: InputMaybe; - points_on_completionLTE?: InputMaybe; - points_on_completionNEQ?: InputMaybe; - points_on_completionNOTIN?: InputMaybe>>; - points_on_completionNOTLIKE?: InputMaybe; - points_per_cycle?: InputMaybe; - points_per_cycleEQ?: InputMaybe; - points_per_cycleGT?: InputMaybe; - points_per_cycleGTE?: InputMaybe; - points_per_cycleIN?: InputMaybe>>; - points_per_cycleLIKE?: InputMaybe; - points_per_cycleLT?: InputMaybe; - points_per_cycleLTE?: InputMaybe; - points_per_cycleNEQ?: InputMaybe; - points_per_cycleNOTIN?: InputMaybe>>; - points_per_cycleNOTLIKE?: InputMaybe; - time_between_shares_change?: InputMaybe; - time_between_shares_changeEQ?: InputMaybe; - time_between_shares_changeGT?: InputMaybe; - time_between_shares_changeGTE?: InputMaybe; - time_between_shares_changeIN?: InputMaybe>>; - time_between_shares_changeLIKE?: InputMaybe; - time_between_shares_changeLT?: InputMaybe; - time_between_shares_changeLTE?: InputMaybe; - time_between_shares_changeNEQ?: InputMaybe; - time_between_shares_changeNOTIN?: InputMaybe>>; - time_between_shares_changeNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + points_for_win?: InputMaybe; + points_for_winEQ?: InputMaybe; + points_for_winGT?: InputMaybe; + points_for_winGTE?: InputMaybe; + points_for_winIN?: InputMaybe>>; + points_for_winLIKE?: InputMaybe; + points_for_winLT?: InputMaybe; + points_for_winLTE?: InputMaybe; + points_for_winNEQ?: InputMaybe; + points_for_winNOTIN?: InputMaybe>>; + points_for_winNOTLIKE?: InputMaybe; + points_on_completion?: InputMaybe; + points_on_completionEQ?: InputMaybe; + points_on_completionGT?: InputMaybe; + points_on_completionGTE?: InputMaybe; + points_on_completionIN?: InputMaybe>>; + points_on_completionLIKE?: InputMaybe; + points_on_completionLT?: InputMaybe; + points_on_completionLTE?: InputMaybe; + points_on_completionNEQ?: InputMaybe; + points_on_completionNOTIN?: InputMaybe>>; + points_on_completionNOTLIKE?: InputMaybe; + points_per_cycle?: InputMaybe; + points_per_cycleEQ?: InputMaybe; + points_per_cycleGT?: InputMaybe; + points_per_cycleGTE?: InputMaybe; + points_per_cycleIN?: InputMaybe>>; + points_per_cycleLIKE?: InputMaybe; + points_per_cycleLT?: InputMaybe; + points_per_cycleLTE?: InputMaybe; + points_per_cycleNEQ?: InputMaybe; + points_per_cycleNOTIN?: InputMaybe>>; + points_per_cycleNOTLIKE?: InputMaybe; + time_between_shares_change?: InputMaybe; + time_between_shares_changeEQ?: InputMaybe; + time_between_shares_changeGT?: InputMaybe; + time_between_shares_changeGTE?: InputMaybe; + time_between_shares_changeIN?: InputMaybe>>; + time_between_shares_changeLIKE?: InputMaybe; + time_between_shares_changeLT?: InputMaybe; + time_between_shares_changeLTE?: InputMaybe; + time_between_shares_changeNEQ?: InputMaybe; + time_between_shares_changeNOTIN?: InputMaybe>>; + time_between_shares_changeNOTLIKE?: InputMaybe; }; export type S0_Eternum_HyperstructureContributionOrder = { @@ -2458,58 +2458,58 @@ export type S0_Eternum_HyperstructureContributionOrder = { }; export enum S0_Eternum_HyperstructureContributionOrderField { - Contributions = 'CONTRIBUTIONS', - ContributorEntityId = 'CONTRIBUTOR_ENTITY_ID', - HyperstructureEntityId = 'HYPERSTRUCTURE_ENTITY_ID', - Id = 'ID', - Timestamp = 'TIMESTAMP' + Contributions = "CONTRIBUTIONS", + ContributorEntityId = "CONTRIBUTOR_ENTITY_ID", + HyperstructureEntityId = "HYPERSTRUCTURE_ENTITY_ID", + Id = "ID", + Timestamp = "TIMESTAMP", } export type S0_Eternum_HyperstructureContributionWhereInput = { - contributor_entity_id?: InputMaybe; - contributor_entity_idEQ?: InputMaybe; - contributor_entity_idGT?: InputMaybe; - contributor_entity_idGTE?: InputMaybe; - contributor_entity_idIN?: InputMaybe>>; - contributor_entity_idLIKE?: InputMaybe; - contributor_entity_idLT?: InputMaybe; - contributor_entity_idLTE?: InputMaybe; - contributor_entity_idNEQ?: InputMaybe; - contributor_entity_idNOTIN?: InputMaybe>>; - contributor_entity_idNOTLIKE?: InputMaybe; - hyperstructure_entity_id?: InputMaybe; - hyperstructure_entity_idEQ?: InputMaybe; - hyperstructure_entity_idGT?: InputMaybe; - hyperstructure_entity_idGTE?: InputMaybe; - hyperstructure_entity_idIN?: InputMaybe>>; - hyperstructure_entity_idLIKE?: InputMaybe; - hyperstructure_entity_idLT?: InputMaybe; - hyperstructure_entity_idLTE?: InputMaybe; - hyperstructure_entity_idNEQ?: InputMaybe; - hyperstructure_entity_idNOTIN?: InputMaybe>>; - hyperstructure_entity_idNOTLIKE?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + contributor_entity_id?: InputMaybe; + contributor_entity_idEQ?: InputMaybe; + contributor_entity_idGT?: InputMaybe; + contributor_entity_idGTE?: InputMaybe; + contributor_entity_idIN?: InputMaybe>>; + contributor_entity_idLIKE?: InputMaybe; + contributor_entity_idLT?: InputMaybe; + contributor_entity_idLTE?: InputMaybe; + contributor_entity_idNEQ?: InputMaybe; + contributor_entity_idNOTIN?: InputMaybe>>; + contributor_entity_idNOTLIKE?: InputMaybe; + hyperstructure_entity_id?: InputMaybe; + hyperstructure_entity_idEQ?: InputMaybe; + hyperstructure_entity_idGT?: InputMaybe; + hyperstructure_entity_idGTE?: InputMaybe; + hyperstructure_entity_idIN?: InputMaybe>>; + hyperstructure_entity_idLIKE?: InputMaybe; + hyperstructure_entity_idLT?: InputMaybe; + hyperstructure_entity_idLTE?: InputMaybe; + hyperstructure_entity_idNEQ?: InputMaybe; + hyperstructure_entity_idNOTIN?: InputMaybe>>; + hyperstructure_entity_idNOTLIKE?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_HyperstructureFinishedOrder = { @@ -2518,69 +2518,69 @@ export type S0_Eternum_HyperstructureFinishedOrder = { }; export enum S0_Eternum_HyperstructureFinishedOrderField { - ContributorEntityId = 'CONTRIBUTOR_ENTITY_ID', - HyperstructureEntityId = 'HYPERSTRUCTURE_ENTITY_ID', - HyperstructureOwnerName = 'HYPERSTRUCTURE_OWNER_NAME', - Id = 'ID', - Timestamp = 'TIMESTAMP' + ContributorEntityId = "CONTRIBUTOR_ENTITY_ID", + HyperstructureEntityId = "HYPERSTRUCTURE_ENTITY_ID", + HyperstructureOwnerName = "HYPERSTRUCTURE_OWNER_NAME", + Id = "ID", + Timestamp = "TIMESTAMP", } export type S0_Eternum_HyperstructureFinishedWhereInput = { - contributor_entity_id?: InputMaybe; - contributor_entity_idEQ?: InputMaybe; - contributor_entity_idGT?: InputMaybe; - contributor_entity_idGTE?: InputMaybe; - contributor_entity_idIN?: InputMaybe>>; - contributor_entity_idLIKE?: InputMaybe; - contributor_entity_idLT?: InputMaybe; - contributor_entity_idLTE?: InputMaybe; - contributor_entity_idNEQ?: InputMaybe; - contributor_entity_idNOTIN?: InputMaybe>>; - contributor_entity_idNOTLIKE?: InputMaybe; - hyperstructure_entity_id?: InputMaybe; - hyperstructure_entity_idEQ?: InputMaybe; - hyperstructure_entity_idGT?: InputMaybe; - hyperstructure_entity_idGTE?: InputMaybe; - hyperstructure_entity_idIN?: InputMaybe>>; - hyperstructure_entity_idLIKE?: InputMaybe; - hyperstructure_entity_idLT?: InputMaybe; - hyperstructure_entity_idLTE?: InputMaybe; - hyperstructure_entity_idNEQ?: InputMaybe; - hyperstructure_entity_idNOTIN?: InputMaybe>>; - hyperstructure_entity_idNOTLIKE?: InputMaybe; - hyperstructure_owner_name?: InputMaybe; - hyperstructure_owner_nameEQ?: InputMaybe; - hyperstructure_owner_nameGT?: InputMaybe; - hyperstructure_owner_nameGTE?: InputMaybe; - hyperstructure_owner_nameIN?: InputMaybe>>; - hyperstructure_owner_nameLIKE?: InputMaybe; - hyperstructure_owner_nameLT?: InputMaybe; - hyperstructure_owner_nameLTE?: InputMaybe; - hyperstructure_owner_nameNEQ?: InputMaybe; - hyperstructure_owner_nameNOTIN?: InputMaybe>>; - hyperstructure_owner_nameNOTLIKE?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + contributor_entity_id?: InputMaybe; + contributor_entity_idEQ?: InputMaybe; + contributor_entity_idGT?: InputMaybe; + contributor_entity_idGTE?: InputMaybe; + contributor_entity_idIN?: InputMaybe>>; + contributor_entity_idLIKE?: InputMaybe; + contributor_entity_idLT?: InputMaybe; + contributor_entity_idLTE?: InputMaybe; + contributor_entity_idNEQ?: InputMaybe; + contributor_entity_idNOTIN?: InputMaybe>>; + contributor_entity_idNOTLIKE?: InputMaybe; + hyperstructure_entity_id?: InputMaybe; + hyperstructure_entity_idEQ?: InputMaybe; + hyperstructure_entity_idGT?: InputMaybe; + hyperstructure_entity_idGTE?: InputMaybe; + hyperstructure_entity_idIN?: InputMaybe>>; + hyperstructure_entity_idLIKE?: InputMaybe; + hyperstructure_entity_idLT?: InputMaybe; + hyperstructure_entity_idLTE?: InputMaybe; + hyperstructure_entity_idNEQ?: InputMaybe; + hyperstructure_entity_idNOTIN?: InputMaybe>>; + hyperstructure_entity_idNOTLIKE?: InputMaybe; + hyperstructure_owner_name?: InputMaybe; + hyperstructure_owner_nameEQ?: InputMaybe; + hyperstructure_owner_nameGT?: InputMaybe; + hyperstructure_owner_nameGTE?: InputMaybe; + hyperstructure_owner_nameIN?: InputMaybe>>; + hyperstructure_owner_nameLIKE?: InputMaybe; + hyperstructure_owner_nameLT?: InputMaybe; + hyperstructure_owner_nameLTE?: InputMaybe; + hyperstructure_owner_nameNEQ?: InputMaybe; + hyperstructure_owner_nameNOTIN?: InputMaybe>>; + hyperstructure_owner_nameNOTLIKE?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_HyperstructureOrder = { @@ -2589,13 +2589,13 @@ export type S0_Eternum_HyperstructureOrder = { }; export enum S0_Eternum_HyperstructureOrderField { - Access = 'ACCESS', - Completed = 'COMPLETED', - CurrentEpoch = 'CURRENT_EPOCH', - EntityId = 'ENTITY_ID', - LastUpdatedBy = 'LAST_UPDATED_BY', - LastUpdatedTimestamp = 'LAST_UPDATED_TIMESTAMP', - Randomness = 'RANDOMNESS' + Access = "ACCESS", + Completed = "COMPLETED", + CurrentEpoch = "CURRENT_EPOCH", + EntityId = "ENTITY_ID", + LastUpdatedBy = "LAST_UPDATED_BY", + LastUpdatedTimestamp = "LAST_UPDATED_TIMESTAMP", + Randomness = "RANDOMNESS", } export type S0_Eternum_HyperstructureResourceConfigOrder = { @@ -2604,57 +2604,57 @@ export type S0_Eternum_HyperstructureResourceConfigOrder = { }; export enum S0_Eternum_HyperstructureResourceConfigOrderField { - ConfigId = 'CONFIG_ID', - MaxAmount = 'MAX_AMOUNT', - MinAmount = 'MIN_AMOUNT', - ResourceTier = 'RESOURCE_TIER' + ConfigId = "CONFIG_ID", + MaxAmount = "MAX_AMOUNT", + MinAmount = "MIN_AMOUNT", + ResourceTier = "RESOURCE_TIER", } export type S0_Eternum_HyperstructureResourceConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - max_amount?: InputMaybe; - max_amountEQ?: InputMaybe; - max_amountGT?: InputMaybe; - max_amountGTE?: InputMaybe; - max_amountIN?: InputMaybe>>; - max_amountLIKE?: InputMaybe; - max_amountLT?: InputMaybe; - max_amountLTE?: InputMaybe; - max_amountNEQ?: InputMaybe; - max_amountNOTIN?: InputMaybe>>; - max_amountNOTLIKE?: InputMaybe; - min_amount?: InputMaybe; - min_amountEQ?: InputMaybe; - min_amountGT?: InputMaybe; - min_amountGTE?: InputMaybe; - min_amountIN?: InputMaybe>>; - min_amountLIKE?: InputMaybe; - min_amountLT?: InputMaybe; - min_amountLTE?: InputMaybe; - min_amountNEQ?: InputMaybe; - min_amountNOTIN?: InputMaybe>>; - min_amountNOTLIKE?: InputMaybe; - resource_tier?: InputMaybe; - resource_tierEQ?: InputMaybe; - resource_tierGT?: InputMaybe; - resource_tierGTE?: InputMaybe; - resource_tierIN?: InputMaybe>>; - resource_tierLIKE?: InputMaybe; - resource_tierLT?: InputMaybe; - resource_tierLTE?: InputMaybe; - resource_tierNEQ?: InputMaybe; - resource_tierNOTIN?: InputMaybe>>; - resource_tierNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + max_amount?: InputMaybe; + max_amountEQ?: InputMaybe; + max_amountGT?: InputMaybe; + max_amountGTE?: InputMaybe; + max_amountIN?: InputMaybe>>; + max_amountLIKE?: InputMaybe; + max_amountLT?: InputMaybe; + max_amountLTE?: InputMaybe; + max_amountNEQ?: InputMaybe; + max_amountNOTIN?: InputMaybe>>; + max_amountNOTLIKE?: InputMaybe; + min_amount?: InputMaybe; + min_amountEQ?: InputMaybe; + min_amountGT?: InputMaybe; + min_amountGTE?: InputMaybe; + min_amountIN?: InputMaybe>>; + min_amountLIKE?: InputMaybe; + min_amountLT?: InputMaybe; + min_amountLTE?: InputMaybe; + min_amountNEQ?: InputMaybe; + min_amountNOTIN?: InputMaybe>>; + min_amountNOTLIKE?: InputMaybe; + resource_tier?: InputMaybe; + resource_tierEQ?: InputMaybe; + resource_tierGT?: InputMaybe; + resource_tierGTE?: InputMaybe; + resource_tierIN?: InputMaybe>>; + resource_tierLIKE?: InputMaybe; + resource_tierLT?: InputMaybe; + resource_tierLTE?: InputMaybe; + resource_tierNEQ?: InputMaybe; + resource_tierNOTIN?: InputMaybe>>; + resource_tierNOTLIKE?: InputMaybe; }; export type S0_Eternum_HyperstructureStartedOrder = { @@ -2663,117 +2663,117 @@ export type S0_Eternum_HyperstructureStartedOrder = { }; export enum S0_Eternum_HyperstructureStartedOrderField { - CreatorAddressName = 'CREATOR_ADDRESS_NAME', - HyperstructureEntityId = 'HYPERSTRUCTURE_ENTITY_ID', - Id = 'ID', - Timestamp = 'TIMESTAMP' + CreatorAddressName = "CREATOR_ADDRESS_NAME", + HyperstructureEntityId = "HYPERSTRUCTURE_ENTITY_ID", + Id = "ID", + Timestamp = "TIMESTAMP", } export type S0_Eternum_HyperstructureStartedWhereInput = { - creator_address_name?: InputMaybe; - creator_address_nameEQ?: InputMaybe; - creator_address_nameGT?: InputMaybe; - creator_address_nameGTE?: InputMaybe; - creator_address_nameIN?: InputMaybe>>; - creator_address_nameLIKE?: InputMaybe; - creator_address_nameLT?: InputMaybe; - creator_address_nameLTE?: InputMaybe; - creator_address_nameNEQ?: InputMaybe; - creator_address_nameNOTIN?: InputMaybe>>; - creator_address_nameNOTLIKE?: InputMaybe; - hyperstructure_entity_id?: InputMaybe; - hyperstructure_entity_idEQ?: InputMaybe; - hyperstructure_entity_idGT?: InputMaybe; - hyperstructure_entity_idGTE?: InputMaybe; - hyperstructure_entity_idIN?: InputMaybe>>; - hyperstructure_entity_idLIKE?: InputMaybe; - hyperstructure_entity_idLT?: InputMaybe; - hyperstructure_entity_idLTE?: InputMaybe; - hyperstructure_entity_idNEQ?: InputMaybe; - hyperstructure_entity_idNOTIN?: InputMaybe>>; - hyperstructure_entity_idNOTLIKE?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + creator_address_name?: InputMaybe; + creator_address_nameEQ?: InputMaybe; + creator_address_nameGT?: InputMaybe; + creator_address_nameGTE?: InputMaybe; + creator_address_nameIN?: InputMaybe>>; + creator_address_nameLIKE?: InputMaybe; + creator_address_nameLT?: InputMaybe; + creator_address_nameLTE?: InputMaybe; + creator_address_nameNEQ?: InputMaybe; + creator_address_nameNOTIN?: InputMaybe>>; + creator_address_nameNOTLIKE?: InputMaybe; + hyperstructure_entity_id?: InputMaybe; + hyperstructure_entity_idEQ?: InputMaybe; + hyperstructure_entity_idGT?: InputMaybe; + hyperstructure_entity_idGTE?: InputMaybe; + hyperstructure_entity_idIN?: InputMaybe>>; + hyperstructure_entity_idLIKE?: InputMaybe; + hyperstructure_entity_idLT?: InputMaybe; + hyperstructure_entity_idLTE?: InputMaybe; + hyperstructure_entity_idNEQ?: InputMaybe; + hyperstructure_entity_idNOTIN?: InputMaybe>>; + hyperstructure_entity_idNOTLIKE?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_HyperstructureWhereInput = { - access?: InputMaybe; - completed?: InputMaybe; - current_epoch?: InputMaybe; - current_epochEQ?: InputMaybe; - current_epochGT?: InputMaybe; - current_epochGTE?: InputMaybe; - current_epochIN?: InputMaybe>>; - current_epochLIKE?: InputMaybe; - current_epochLT?: InputMaybe; - current_epochLTE?: InputMaybe; - current_epochNEQ?: InputMaybe; - current_epochNOTIN?: InputMaybe>>; - current_epochNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - last_updated_by?: InputMaybe; - last_updated_byEQ?: InputMaybe; - last_updated_byGT?: InputMaybe; - last_updated_byGTE?: InputMaybe; - last_updated_byIN?: InputMaybe>>; - last_updated_byLIKE?: InputMaybe; - last_updated_byLT?: InputMaybe; - last_updated_byLTE?: InputMaybe; - last_updated_byNEQ?: InputMaybe; - last_updated_byNOTIN?: InputMaybe>>; - last_updated_byNOTLIKE?: InputMaybe; - last_updated_timestamp?: InputMaybe; - last_updated_timestampEQ?: InputMaybe; - last_updated_timestampGT?: InputMaybe; - last_updated_timestampGTE?: InputMaybe; - last_updated_timestampIN?: InputMaybe>>; - last_updated_timestampLIKE?: InputMaybe; - last_updated_timestampLT?: InputMaybe; - last_updated_timestampLTE?: InputMaybe; - last_updated_timestampNEQ?: InputMaybe; - last_updated_timestampNOTIN?: InputMaybe>>; - last_updated_timestampNOTLIKE?: InputMaybe; - randomness?: InputMaybe; - randomnessEQ?: InputMaybe; - randomnessGT?: InputMaybe; - randomnessGTE?: InputMaybe; - randomnessIN?: InputMaybe>>; - randomnessLIKE?: InputMaybe; - randomnessLT?: InputMaybe; - randomnessLTE?: InputMaybe; - randomnessNEQ?: InputMaybe; - randomnessNOTIN?: InputMaybe>>; - randomnessNOTLIKE?: InputMaybe; + access?: InputMaybe; + completed?: InputMaybe; + current_epoch?: InputMaybe; + current_epochEQ?: InputMaybe; + current_epochGT?: InputMaybe; + current_epochGTE?: InputMaybe; + current_epochIN?: InputMaybe>>; + current_epochLIKE?: InputMaybe; + current_epochLT?: InputMaybe; + current_epochLTE?: InputMaybe; + current_epochNEQ?: InputMaybe; + current_epochNOTIN?: InputMaybe>>; + current_epochNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + last_updated_by?: InputMaybe; + last_updated_byEQ?: InputMaybe; + last_updated_byGT?: InputMaybe; + last_updated_byGTE?: InputMaybe; + last_updated_byIN?: InputMaybe>>; + last_updated_byLIKE?: InputMaybe; + last_updated_byLT?: InputMaybe; + last_updated_byLTE?: InputMaybe; + last_updated_byNEQ?: InputMaybe; + last_updated_byNOTIN?: InputMaybe>>; + last_updated_byNOTLIKE?: InputMaybe; + last_updated_timestamp?: InputMaybe; + last_updated_timestampEQ?: InputMaybe; + last_updated_timestampGT?: InputMaybe; + last_updated_timestampGTE?: InputMaybe; + last_updated_timestampIN?: InputMaybe>>; + last_updated_timestampLIKE?: InputMaybe; + last_updated_timestampLT?: InputMaybe; + last_updated_timestampLTE?: InputMaybe; + last_updated_timestampNEQ?: InputMaybe; + last_updated_timestampNOTIN?: InputMaybe>>; + last_updated_timestampNOTLIKE?: InputMaybe; + randomness?: InputMaybe; + randomnessEQ?: InputMaybe; + randomnessGT?: InputMaybe; + randomnessGTE?: InputMaybe; + randomnessIN?: InputMaybe>>; + randomnessLIKE?: InputMaybe; + randomnessLT?: InputMaybe; + randomnessLTE?: InputMaybe; + randomnessNEQ?: InputMaybe; + randomnessNOTIN?: InputMaybe>>; + randomnessNOTLIKE?: InputMaybe; }; export type S0_Eternum_JoinGuildOrder = { @@ -2782,57 +2782,57 @@ export type S0_Eternum_JoinGuildOrder = { }; export enum S0_Eternum_JoinGuildOrderField { - Address = 'ADDRESS', - GuildEntityId = 'GUILD_ENTITY_ID', - GuildName = 'GUILD_NAME', - Timestamp = 'TIMESTAMP' + Address = "ADDRESS", + GuildEntityId = "GUILD_ENTITY_ID", + GuildName = "GUILD_NAME", + Timestamp = "TIMESTAMP", } export type S0_Eternum_JoinGuildWhereInput = { - address?: InputMaybe; - addressEQ?: InputMaybe; - addressGT?: InputMaybe; - addressGTE?: InputMaybe; - addressIN?: InputMaybe>>; - addressLIKE?: InputMaybe; - addressLT?: InputMaybe; - addressLTE?: InputMaybe; - addressNEQ?: InputMaybe; - addressNOTIN?: InputMaybe>>; - addressNOTLIKE?: InputMaybe; - guild_entity_id?: InputMaybe; - guild_entity_idEQ?: InputMaybe; - guild_entity_idGT?: InputMaybe; - guild_entity_idGTE?: InputMaybe; - guild_entity_idIN?: InputMaybe>>; - guild_entity_idLIKE?: InputMaybe; - guild_entity_idLT?: InputMaybe; - guild_entity_idLTE?: InputMaybe; - guild_entity_idNEQ?: InputMaybe; - guild_entity_idNOTIN?: InputMaybe>>; - guild_entity_idNOTLIKE?: InputMaybe; - guild_name?: InputMaybe; - guild_nameEQ?: InputMaybe; - guild_nameGT?: InputMaybe; - guild_nameGTE?: InputMaybe; - guild_nameIN?: InputMaybe>>; - guild_nameLIKE?: InputMaybe; - guild_nameLT?: InputMaybe; - guild_nameLTE?: InputMaybe; - guild_nameNEQ?: InputMaybe; - guild_nameNOTIN?: InputMaybe>>; - guild_nameNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + address?: InputMaybe; + addressEQ?: InputMaybe; + addressGT?: InputMaybe; + addressGTE?: InputMaybe; + addressIN?: InputMaybe>>; + addressLIKE?: InputMaybe; + addressLT?: InputMaybe; + addressLTE?: InputMaybe; + addressNEQ?: InputMaybe; + addressNOTIN?: InputMaybe>>; + addressNOTLIKE?: InputMaybe; + guild_entity_id?: InputMaybe; + guild_entity_idEQ?: InputMaybe; + guild_entity_idGT?: InputMaybe; + guild_entity_idGTE?: InputMaybe; + guild_entity_idIN?: InputMaybe>>; + guild_entity_idLIKE?: InputMaybe; + guild_entity_idLT?: InputMaybe; + guild_entity_idLTE?: InputMaybe; + guild_entity_idNEQ?: InputMaybe; + guild_entity_idNOTIN?: InputMaybe>>; + guild_entity_idNOTLIKE?: InputMaybe; + guild_name?: InputMaybe; + guild_nameEQ?: InputMaybe; + guild_nameGT?: InputMaybe; + guild_nameGTE?: InputMaybe; + guild_nameIN?: InputMaybe>>; + guild_nameLIKE?: InputMaybe; + guild_nameLT?: InputMaybe; + guild_nameLTE?: InputMaybe; + guild_nameNEQ?: InputMaybe; + guild_nameNOTIN?: InputMaybe>>; + guild_nameNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_LeaderboardEntryOrder = { @@ -2841,33 +2841,33 @@ export type S0_Eternum_LeaderboardEntryOrder = { }; export enum S0_Eternum_LeaderboardEntryOrderField { - Address = 'ADDRESS', - Points = 'POINTS' + Address = "ADDRESS", + Points = "POINTS", } export type S0_Eternum_LeaderboardEntryWhereInput = { - address?: InputMaybe; - addressEQ?: InputMaybe; - addressGT?: InputMaybe; - addressGTE?: InputMaybe; - addressIN?: InputMaybe>>; - addressLIKE?: InputMaybe; - addressLT?: InputMaybe; - addressLTE?: InputMaybe; - addressNEQ?: InputMaybe; - addressNOTIN?: InputMaybe>>; - addressNOTLIKE?: InputMaybe; - points?: InputMaybe; - pointsEQ?: InputMaybe; - pointsGT?: InputMaybe; - pointsGTE?: InputMaybe; - pointsIN?: InputMaybe>>; - pointsLIKE?: InputMaybe; - pointsLT?: InputMaybe; - pointsLTE?: InputMaybe; - pointsNEQ?: InputMaybe; - pointsNOTIN?: InputMaybe>>; - pointsNOTLIKE?: InputMaybe; + address?: InputMaybe; + addressEQ?: InputMaybe; + addressGT?: InputMaybe; + addressGTE?: InputMaybe; + addressIN?: InputMaybe>>; + addressLIKE?: InputMaybe; + addressLT?: InputMaybe; + addressLTE?: InputMaybe; + addressNEQ?: InputMaybe; + addressNOTIN?: InputMaybe>>; + addressNOTLIKE?: InputMaybe; + points?: InputMaybe; + pointsEQ?: InputMaybe; + pointsGT?: InputMaybe; + pointsGTE?: InputMaybe; + pointsIN?: InputMaybe>>; + pointsLIKE?: InputMaybe; + pointsLT?: InputMaybe; + pointsLTE?: InputMaybe; + pointsNEQ?: InputMaybe; + pointsNOTIN?: InputMaybe>>; + pointsNOTLIKE?: InputMaybe; }; export type S0_Eternum_LeaderboardOrder = { @@ -2876,11 +2876,11 @@ export type S0_Eternum_LeaderboardOrder = { }; export enum S0_Eternum_LeaderboardOrderField { - ConfigId = 'CONFIG_ID', - DistributionStarted = 'DISTRIBUTION_STARTED', - RegistrationEndTimestamp = 'REGISTRATION_END_TIMESTAMP', - TotalPoints = 'TOTAL_POINTS', - TotalPricePool = 'TOTAL_PRICE_POOL' + ConfigId = "CONFIG_ID", + DistributionStarted = "DISTRIBUTION_STARTED", + RegistrationEndTimestamp = "REGISTRATION_END_TIMESTAMP", + TotalPoints = "TOTAL_POINTS", + TotalPricePool = "TOTAL_PRICE_POOL", } export type S0_Eternum_LeaderboardRegisterContributionOrder = { @@ -2889,35 +2889,35 @@ export type S0_Eternum_LeaderboardRegisterContributionOrder = { }; export enum S0_Eternum_LeaderboardRegisterContributionOrderField { - Address = 'ADDRESS', - HyperstructureEntityId = 'HYPERSTRUCTURE_ENTITY_ID', - Registered = 'REGISTERED' + Address = "ADDRESS", + HyperstructureEntityId = "HYPERSTRUCTURE_ENTITY_ID", + Registered = "REGISTERED", } export type S0_Eternum_LeaderboardRegisterContributionWhereInput = { - address?: InputMaybe; - addressEQ?: InputMaybe; - addressGT?: InputMaybe; - addressGTE?: InputMaybe; - addressIN?: InputMaybe>>; - addressLIKE?: InputMaybe; - addressLT?: InputMaybe; - addressLTE?: InputMaybe; - addressNEQ?: InputMaybe; - addressNOTIN?: InputMaybe>>; - addressNOTLIKE?: InputMaybe; - hyperstructure_entity_id?: InputMaybe; - hyperstructure_entity_idEQ?: InputMaybe; - hyperstructure_entity_idGT?: InputMaybe; - hyperstructure_entity_idGTE?: InputMaybe; - hyperstructure_entity_idIN?: InputMaybe>>; - hyperstructure_entity_idLIKE?: InputMaybe; - hyperstructure_entity_idLT?: InputMaybe; - hyperstructure_entity_idLTE?: InputMaybe; - hyperstructure_entity_idNEQ?: InputMaybe; - hyperstructure_entity_idNOTIN?: InputMaybe>>; - hyperstructure_entity_idNOTLIKE?: InputMaybe; - registered?: InputMaybe; + address?: InputMaybe; + addressEQ?: InputMaybe; + addressGT?: InputMaybe; + addressGTE?: InputMaybe; + addressIN?: InputMaybe>>; + addressLIKE?: InputMaybe; + addressLT?: InputMaybe; + addressLTE?: InputMaybe; + addressNEQ?: InputMaybe; + addressNOTIN?: InputMaybe>>; + addressNOTLIKE?: InputMaybe; + hyperstructure_entity_id?: InputMaybe; + hyperstructure_entity_idEQ?: InputMaybe; + hyperstructure_entity_idGT?: InputMaybe; + hyperstructure_entity_idGTE?: InputMaybe; + hyperstructure_entity_idIN?: InputMaybe>>; + hyperstructure_entity_idLIKE?: InputMaybe; + hyperstructure_entity_idLT?: InputMaybe; + hyperstructure_entity_idLTE?: InputMaybe; + hyperstructure_entity_idNEQ?: InputMaybe; + hyperstructure_entity_idNOTIN?: InputMaybe>>; + hyperstructure_entity_idNOTLIKE?: InputMaybe; + registered?: InputMaybe; }; export type S0_Eternum_LeaderboardRegisterShareOrder = { @@ -2926,47 +2926,47 @@ export type S0_Eternum_LeaderboardRegisterShareOrder = { }; export enum S0_Eternum_LeaderboardRegisterShareOrderField { - Address = 'ADDRESS', - Epoch = 'EPOCH', - HyperstructureEntityId = 'HYPERSTRUCTURE_ENTITY_ID', - Registered = 'REGISTERED' + Address = "ADDRESS", + Epoch = "EPOCH", + HyperstructureEntityId = "HYPERSTRUCTURE_ENTITY_ID", + Registered = "REGISTERED", } export type S0_Eternum_LeaderboardRegisterShareWhereInput = { - address?: InputMaybe; - addressEQ?: InputMaybe; - addressGT?: InputMaybe; - addressGTE?: InputMaybe; - addressIN?: InputMaybe>>; - addressLIKE?: InputMaybe; - addressLT?: InputMaybe; - addressLTE?: InputMaybe; - addressNEQ?: InputMaybe; - addressNOTIN?: InputMaybe>>; - addressNOTLIKE?: InputMaybe; - epoch?: InputMaybe; - epochEQ?: InputMaybe; - epochGT?: InputMaybe; - epochGTE?: InputMaybe; - epochIN?: InputMaybe>>; - epochLIKE?: InputMaybe; - epochLT?: InputMaybe; - epochLTE?: InputMaybe; - epochNEQ?: InputMaybe; - epochNOTIN?: InputMaybe>>; - epochNOTLIKE?: InputMaybe; - hyperstructure_entity_id?: InputMaybe; - hyperstructure_entity_idEQ?: InputMaybe; - hyperstructure_entity_idGT?: InputMaybe; - hyperstructure_entity_idGTE?: InputMaybe; - hyperstructure_entity_idIN?: InputMaybe>>; - hyperstructure_entity_idLIKE?: InputMaybe; - hyperstructure_entity_idLT?: InputMaybe; - hyperstructure_entity_idLTE?: InputMaybe; - hyperstructure_entity_idNEQ?: InputMaybe; - hyperstructure_entity_idNOTIN?: InputMaybe>>; - hyperstructure_entity_idNOTLIKE?: InputMaybe; - registered?: InputMaybe; + address?: InputMaybe; + addressEQ?: InputMaybe; + addressGT?: InputMaybe; + addressGTE?: InputMaybe; + addressIN?: InputMaybe>>; + addressLIKE?: InputMaybe; + addressLT?: InputMaybe; + addressLTE?: InputMaybe; + addressNEQ?: InputMaybe; + addressNOTIN?: InputMaybe>>; + addressNOTLIKE?: InputMaybe; + epoch?: InputMaybe; + epochEQ?: InputMaybe; + epochGT?: InputMaybe; + epochGTE?: InputMaybe; + epochIN?: InputMaybe>>; + epochLIKE?: InputMaybe; + epochLT?: InputMaybe; + epochLTE?: InputMaybe; + epochNEQ?: InputMaybe; + epochNOTIN?: InputMaybe>>; + epochNOTLIKE?: InputMaybe; + hyperstructure_entity_id?: InputMaybe; + hyperstructure_entity_idEQ?: InputMaybe; + hyperstructure_entity_idGT?: InputMaybe; + hyperstructure_entity_idGTE?: InputMaybe; + hyperstructure_entity_idIN?: InputMaybe>>; + hyperstructure_entity_idLIKE?: InputMaybe; + hyperstructure_entity_idLT?: InputMaybe; + hyperstructure_entity_idLTE?: InputMaybe; + hyperstructure_entity_idNEQ?: InputMaybe; + hyperstructure_entity_idNOTIN?: InputMaybe>>; + hyperstructure_entity_idNOTLIKE?: InputMaybe; + registered?: InputMaybe; }; export type S0_Eternum_LeaderboardRegisteredOrder = { @@ -2975,23 +2975,23 @@ export type S0_Eternum_LeaderboardRegisteredOrder = { }; export enum S0_Eternum_LeaderboardRegisteredOrderField { - Address = 'ADDRESS', - Registered = 'REGISTERED' + Address = "ADDRESS", + Registered = "REGISTERED", } export type S0_Eternum_LeaderboardRegisteredWhereInput = { - address?: InputMaybe; - addressEQ?: InputMaybe; - addressGT?: InputMaybe; - addressGTE?: InputMaybe; - addressIN?: InputMaybe>>; - addressLIKE?: InputMaybe; - addressLT?: InputMaybe; - addressLTE?: InputMaybe; - addressNEQ?: InputMaybe; - addressNOTIN?: InputMaybe>>; - addressNOTLIKE?: InputMaybe; - registered?: InputMaybe; + address?: InputMaybe; + addressEQ?: InputMaybe; + addressGT?: InputMaybe; + addressGTE?: InputMaybe; + addressIN?: InputMaybe>>; + addressLIKE?: InputMaybe; + addressLT?: InputMaybe; + addressLTE?: InputMaybe; + addressNEQ?: InputMaybe; + addressNOTIN?: InputMaybe>>; + addressNOTLIKE?: InputMaybe; + registered?: InputMaybe; }; export type S0_Eternum_LeaderboardRewardClaimedOrder = { @@ -3000,60 +3000,60 @@ export type S0_Eternum_LeaderboardRewardClaimedOrder = { }; export enum S0_Eternum_LeaderboardRewardClaimedOrderField { - Address = 'ADDRESS', - Claimed = 'CLAIMED' + Address = "ADDRESS", + Claimed = "CLAIMED", } export type S0_Eternum_LeaderboardRewardClaimedWhereInput = { - address?: InputMaybe; - addressEQ?: InputMaybe; - addressGT?: InputMaybe; - addressGTE?: InputMaybe; - addressIN?: InputMaybe>>; - addressLIKE?: InputMaybe; - addressLT?: InputMaybe; - addressLTE?: InputMaybe; - addressNEQ?: InputMaybe; - addressNOTIN?: InputMaybe>>; - addressNOTLIKE?: InputMaybe; - claimed?: InputMaybe; + address?: InputMaybe; + addressEQ?: InputMaybe; + addressGT?: InputMaybe; + addressGTE?: InputMaybe; + addressIN?: InputMaybe>>; + addressLIKE?: InputMaybe; + addressLT?: InputMaybe; + addressLTE?: InputMaybe; + addressNEQ?: InputMaybe; + addressNOTIN?: InputMaybe>>; + addressNOTLIKE?: InputMaybe; + claimed?: InputMaybe; }; export type S0_Eternum_LeaderboardWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - distribution_started?: InputMaybe; - registration_end_timestamp?: InputMaybe; - registration_end_timestampEQ?: InputMaybe; - registration_end_timestampGT?: InputMaybe; - registration_end_timestampGTE?: InputMaybe; - registration_end_timestampIN?: InputMaybe>>; - registration_end_timestampLIKE?: InputMaybe; - registration_end_timestampLT?: InputMaybe; - registration_end_timestampLTE?: InputMaybe; - registration_end_timestampNEQ?: InputMaybe; - registration_end_timestampNOTIN?: InputMaybe>>; - registration_end_timestampNOTLIKE?: InputMaybe; - total_points?: InputMaybe; - total_pointsEQ?: InputMaybe; - total_pointsGT?: InputMaybe; - total_pointsGTE?: InputMaybe; - total_pointsIN?: InputMaybe>>; - total_pointsLIKE?: InputMaybe; - total_pointsLT?: InputMaybe; - total_pointsLTE?: InputMaybe; - total_pointsNEQ?: InputMaybe; - total_pointsNOTIN?: InputMaybe>>; - total_pointsNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + distribution_started?: InputMaybe; + registration_end_timestamp?: InputMaybe; + registration_end_timestampEQ?: InputMaybe; + registration_end_timestampGT?: InputMaybe; + registration_end_timestampGTE?: InputMaybe; + registration_end_timestampIN?: InputMaybe>>; + registration_end_timestampLIKE?: InputMaybe; + registration_end_timestampLT?: InputMaybe; + registration_end_timestampLTE?: InputMaybe; + registration_end_timestampNEQ?: InputMaybe; + registration_end_timestampNOTIN?: InputMaybe>>; + registration_end_timestampNOTLIKE?: InputMaybe; + total_points?: InputMaybe; + total_pointsEQ?: InputMaybe; + total_pointsGT?: InputMaybe; + total_pointsGTE?: InputMaybe; + total_pointsIN?: InputMaybe>>; + total_pointsLIKE?: InputMaybe; + total_pointsLT?: InputMaybe; + total_pointsLTE?: InputMaybe; + total_pointsNEQ?: InputMaybe; + total_pointsNOTIN?: InputMaybe>>; + total_pointsNOTLIKE?: InputMaybe; }; export type S0_Eternum_LevelingConfigOrder = { @@ -3062,177 +3062,177 @@ export type S0_Eternum_LevelingConfigOrder = { }; export enum S0_Eternum_LevelingConfigOrderField { - BaseMultiplier = 'BASE_MULTIPLIER', - ConfigId = 'CONFIG_ID', - CostPercentageScaled = 'COST_PERCENTAGE_SCALED', - DecayInterval = 'DECAY_INTERVAL', - DecayScaled = 'DECAY_SCALED', - FishBaseAmount = 'FISH_BASE_AMOUNT', - MaxLevel = 'MAX_LEVEL', - Resource_1CostCount = 'RESOURCE_1_COST_COUNT', - Resource_1CostId = 'RESOURCE_1_COST_ID', - Resource_2CostCount = 'RESOURCE_2_COST_COUNT', - Resource_2CostId = 'RESOURCE_2_COST_ID', - Resource_3CostCount = 'RESOURCE_3_COST_COUNT', - Resource_3CostId = 'RESOURCE_3_COST_ID', - WheatBaseAmount = 'WHEAT_BASE_AMOUNT' + BaseMultiplier = "BASE_MULTIPLIER", + ConfigId = "CONFIG_ID", + CostPercentageScaled = "COST_PERCENTAGE_SCALED", + DecayInterval = "DECAY_INTERVAL", + DecayScaled = "DECAY_SCALED", + FishBaseAmount = "FISH_BASE_AMOUNT", + MaxLevel = "MAX_LEVEL", + Resource_1CostCount = "RESOURCE_1_COST_COUNT", + Resource_1CostId = "RESOURCE_1_COST_ID", + Resource_2CostCount = "RESOURCE_2_COST_COUNT", + Resource_2CostId = "RESOURCE_2_COST_ID", + Resource_3CostCount = "RESOURCE_3_COST_COUNT", + Resource_3CostId = "RESOURCE_3_COST_ID", + WheatBaseAmount = "WHEAT_BASE_AMOUNT", } export type S0_Eternum_LevelingConfigWhereInput = { - base_multiplier?: InputMaybe; - base_multiplierEQ?: InputMaybe; - base_multiplierGT?: InputMaybe; - base_multiplierGTE?: InputMaybe; - base_multiplierIN?: InputMaybe>>; - base_multiplierLIKE?: InputMaybe; - base_multiplierLT?: InputMaybe; - base_multiplierLTE?: InputMaybe; - base_multiplierNEQ?: InputMaybe; - base_multiplierNOTIN?: InputMaybe>>; - base_multiplierNOTLIKE?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - cost_percentage_scaled?: InputMaybe; - cost_percentage_scaledEQ?: InputMaybe; - cost_percentage_scaledGT?: InputMaybe; - cost_percentage_scaledGTE?: InputMaybe; - cost_percentage_scaledIN?: InputMaybe>>; - cost_percentage_scaledLIKE?: InputMaybe; - cost_percentage_scaledLT?: InputMaybe; - cost_percentage_scaledLTE?: InputMaybe; - cost_percentage_scaledNEQ?: InputMaybe; - cost_percentage_scaledNOTIN?: InputMaybe>>; - cost_percentage_scaledNOTLIKE?: InputMaybe; - decay_interval?: InputMaybe; - decay_intervalEQ?: InputMaybe; - decay_intervalGT?: InputMaybe; - decay_intervalGTE?: InputMaybe; - decay_intervalIN?: InputMaybe>>; - decay_intervalLIKE?: InputMaybe; - decay_intervalLT?: InputMaybe; - decay_intervalLTE?: InputMaybe; - decay_intervalNEQ?: InputMaybe; - decay_intervalNOTIN?: InputMaybe>>; - decay_intervalNOTLIKE?: InputMaybe; - decay_scaled?: InputMaybe; - decay_scaledEQ?: InputMaybe; - decay_scaledGT?: InputMaybe; - decay_scaledGTE?: InputMaybe; - decay_scaledIN?: InputMaybe>>; - decay_scaledLIKE?: InputMaybe; - decay_scaledLT?: InputMaybe; - decay_scaledLTE?: InputMaybe; - decay_scaledNEQ?: InputMaybe; - decay_scaledNOTIN?: InputMaybe>>; - decay_scaledNOTLIKE?: InputMaybe; - fish_base_amount?: InputMaybe; - fish_base_amountEQ?: InputMaybe; - fish_base_amountGT?: InputMaybe; - fish_base_amountGTE?: InputMaybe; - fish_base_amountIN?: InputMaybe>>; - fish_base_amountLIKE?: InputMaybe; - fish_base_amountLT?: InputMaybe; - fish_base_amountLTE?: InputMaybe; - fish_base_amountNEQ?: InputMaybe; - fish_base_amountNOTIN?: InputMaybe>>; - fish_base_amountNOTLIKE?: InputMaybe; - max_level?: InputMaybe; - max_levelEQ?: InputMaybe; - max_levelGT?: InputMaybe; - max_levelGTE?: InputMaybe; - max_levelIN?: InputMaybe>>; - max_levelLIKE?: InputMaybe; - max_levelLT?: InputMaybe; - max_levelLTE?: InputMaybe; - max_levelNEQ?: InputMaybe; - max_levelNOTIN?: InputMaybe>>; - max_levelNOTLIKE?: InputMaybe; - resource_1_cost_count?: InputMaybe; - resource_1_cost_countEQ?: InputMaybe; - resource_1_cost_countGT?: InputMaybe; - resource_1_cost_countGTE?: InputMaybe; - resource_1_cost_countIN?: InputMaybe>>; - resource_1_cost_countLIKE?: InputMaybe; - resource_1_cost_countLT?: InputMaybe; - resource_1_cost_countLTE?: InputMaybe; - resource_1_cost_countNEQ?: InputMaybe; - resource_1_cost_countNOTIN?: InputMaybe>>; - resource_1_cost_countNOTLIKE?: InputMaybe; - resource_1_cost_id?: InputMaybe; - resource_1_cost_idEQ?: InputMaybe; - resource_1_cost_idGT?: InputMaybe; - resource_1_cost_idGTE?: InputMaybe; - resource_1_cost_idIN?: InputMaybe>>; - resource_1_cost_idLIKE?: InputMaybe; - resource_1_cost_idLT?: InputMaybe; - resource_1_cost_idLTE?: InputMaybe; - resource_1_cost_idNEQ?: InputMaybe; - resource_1_cost_idNOTIN?: InputMaybe>>; - resource_1_cost_idNOTLIKE?: InputMaybe; - resource_2_cost_count?: InputMaybe; - resource_2_cost_countEQ?: InputMaybe; - resource_2_cost_countGT?: InputMaybe; - resource_2_cost_countGTE?: InputMaybe; - resource_2_cost_countIN?: InputMaybe>>; - resource_2_cost_countLIKE?: InputMaybe; - resource_2_cost_countLT?: InputMaybe; - resource_2_cost_countLTE?: InputMaybe; - resource_2_cost_countNEQ?: InputMaybe; - resource_2_cost_countNOTIN?: InputMaybe>>; - resource_2_cost_countNOTLIKE?: InputMaybe; - resource_2_cost_id?: InputMaybe; - resource_2_cost_idEQ?: InputMaybe; - resource_2_cost_idGT?: InputMaybe; - resource_2_cost_idGTE?: InputMaybe; - resource_2_cost_idIN?: InputMaybe>>; - resource_2_cost_idLIKE?: InputMaybe; - resource_2_cost_idLT?: InputMaybe; - resource_2_cost_idLTE?: InputMaybe; - resource_2_cost_idNEQ?: InputMaybe; - resource_2_cost_idNOTIN?: InputMaybe>>; - resource_2_cost_idNOTLIKE?: InputMaybe; - resource_3_cost_count?: InputMaybe; - resource_3_cost_countEQ?: InputMaybe; - resource_3_cost_countGT?: InputMaybe; - resource_3_cost_countGTE?: InputMaybe; - resource_3_cost_countIN?: InputMaybe>>; - resource_3_cost_countLIKE?: InputMaybe; - resource_3_cost_countLT?: InputMaybe; - resource_3_cost_countLTE?: InputMaybe; - resource_3_cost_countNEQ?: InputMaybe; - resource_3_cost_countNOTIN?: InputMaybe>>; - resource_3_cost_countNOTLIKE?: InputMaybe; - resource_3_cost_id?: InputMaybe; - resource_3_cost_idEQ?: InputMaybe; - resource_3_cost_idGT?: InputMaybe; - resource_3_cost_idGTE?: InputMaybe; - resource_3_cost_idIN?: InputMaybe>>; - resource_3_cost_idLIKE?: InputMaybe; - resource_3_cost_idLT?: InputMaybe; - resource_3_cost_idLTE?: InputMaybe; - resource_3_cost_idNEQ?: InputMaybe; - resource_3_cost_idNOTIN?: InputMaybe>>; - resource_3_cost_idNOTLIKE?: InputMaybe; - wheat_base_amount?: InputMaybe; - wheat_base_amountEQ?: InputMaybe; - wheat_base_amountGT?: InputMaybe; - wheat_base_amountGTE?: InputMaybe; - wheat_base_amountIN?: InputMaybe>>; - wheat_base_amountLIKE?: InputMaybe; - wheat_base_amountLT?: InputMaybe; - wheat_base_amountLTE?: InputMaybe; - wheat_base_amountNEQ?: InputMaybe; - wheat_base_amountNOTIN?: InputMaybe>>; - wheat_base_amountNOTLIKE?: InputMaybe; + base_multiplier?: InputMaybe; + base_multiplierEQ?: InputMaybe; + base_multiplierGT?: InputMaybe; + base_multiplierGTE?: InputMaybe; + base_multiplierIN?: InputMaybe>>; + base_multiplierLIKE?: InputMaybe; + base_multiplierLT?: InputMaybe; + base_multiplierLTE?: InputMaybe; + base_multiplierNEQ?: InputMaybe; + base_multiplierNOTIN?: InputMaybe>>; + base_multiplierNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + cost_percentage_scaled?: InputMaybe; + cost_percentage_scaledEQ?: InputMaybe; + cost_percentage_scaledGT?: InputMaybe; + cost_percentage_scaledGTE?: InputMaybe; + cost_percentage_scaledIN?: InputMaybe>>; + cost_percentage_scaledLIKE?: InputMaybe; + cost_percentage_scaledLT?: InputMaybe; + cost_percentage_scaledLTE?: InputMaybe; + cost_percentage_scaledNEQ?: InputMaybe; + cost_percentage_scaledNOTIN?: InputMaybe>>; + cost_percentage_scaledNOTLIKE?: InputMaybe; + decay_interval?: InputMaybe; + decay_intervalEQ?: InputMaybe; + decay_intervalGT?: InputMaybe; + decay_intervalGTE?: InputMaybe; + decay_intervalIN?: InputMaybe>>; + decay_intervalLIKE?: InputMaybe; + decay_intervalLT?: InputMaybe; + decay_intervalLTE?: InputMaybe; + decay_intervalNEQ?: InputMaybe; + decay_intervalNOTIN?: InputMaybe>>; + decay_intervalNOTLIKE?: InputMaybe; + decay_scaled?: InputMaybe; + decay_scaledEQ?: InputMaybe; + decay_scaledGT?: InputMaybe; + decay_scaledGTE?: InputMaybe; + decay_scaledIN?: InputMaybe>>; + decay_scaledLIKE?: InputMaybe; + decay_scaledLT?: InputMaybe; + decay_scaledLTE?: InputMaybe; + decay_scaledNEQ?: InputMaybe; + decay_scaledNOTIN?: InputMaybe>>; + decay_scaledNOTLIKE?: InputMaybe; + fish_base_amount?: InputMaybe; + fish_base_amountEQ?: InputMaybe; + fish_base_amountGT?: InputMaybe; + fish_base_amountGTE?: InputMaybe; + fish_base_amountIN?: InputMaybe>>; + fish_base_amountLIKE?: InputMaybe; + fish_base_amountLT?: InputMaybe; + fish_base_amountLTE?: InputMaybe; + fish_base_amountNEQ?: InputMaybe; + fish_base_amountNOTIN?: InputMaybe>>; + fish_base_amountNOTLIKE?: InputMaybe; + max_level?: InputMaybe; + max_levelEQ?: InputMaybe; + max_levelGT?: InputMaybe; + max_levelGTE?: InputMaybe; + max_levelIN?: InputMaybe>>; + max_levelLIKE?: InputMaybe; + max_levelLT?: InputMaybe; + max_levelLTE?: InputMaybe; + max_levelNEQ?: InputMaybe; + max_levelNOTIN?: InputMaybe>>; + max_levelNOTLIKE?: InputMaybe; + resource_1_cost_count?: InputMaybe; + resource_1_cost_countEQ?: InputMaybe; + resource_1_cost_countGT?: InputMaybe; + resource_1_cost_countGTE?: InputMaybe; + resource_1_cost_countIN?: InputMaybe>>; + resource_1_cost_countLIKE?: InputMaybe; + resource_1_cost_countLT?: InputMaybe; + resource_1_cost_countLTE?: InputMaybe; + resource_1_cost_countNEQ?: InputMaybe; + resource_1_cost_countNOTIN?: InputMaybe>>; + resource_1_cost_countNOTLIKE?: InputMaybe; + resource_1_cost_id?: InputMaybe; + resource_1_cost_idEQ?: InputMaybe; + resource_1_cost_idGT?: InputMaybe; + resource_1_cost_idGTE?: InputMaybe; + resource_1_cost_idIN?: InputMaybe>>; + resource_1_cost_idLIKE?: InputMaybe; + resource_1_cost_idLT?: InputMaybe; + resource_1_cost_idLTE?: InputMaybe; + resource_1_cost_idNEQ?: InputMaybe; + resource_1_cost_idNOTIN?: InputMaybe>>; + resource_1_cost_idNOTLIKE?: InputMaybe; + resource_2_cost_count?: InputMaybe; + resource_2_cost_countEQ?: InputMaybe; + resource_2_cost_countGT?: InputMaybe; + resource_2_cost_countGTE?: InputMaybe; + resource_2_cost_countIN?: InputMaybe>>; + resource_2_cost_countLIKE?: InputMaybe; + resource_2_cost_countLT?: InputMaybe; + resource_2_cost_countLTE?: InputMaybe; + resource_2_cost_countNEQ?: InputMaybe; + resource_2_cost_countNOTIN?: InputMaybe>>; + resource_2_cost_countNOTLIKE?: InputMaybe; + resource_2_cost_id?: InputMaybe; + resource_2_cost_idEQ?: InputMaybe; + resource_2_cost_idGT?: InputMaybe; + resource_2_cost_idGTE?: InputMaybe; + resource_2_cost_idIN?: InputMaybe>>; + resource_2_cost_idLIKE?: InputMaybe; + resource_2_cost_idLT?: InputMaybe; + resource_2_cost_idLTE?: InputMaybe; + resource_2_cost_idNEQ?: InputMaybe; + resource_2_cost_idNOTIN?: InputMaybe>>; + resource_2_cost_idNOTLIKE?: InputMaybe; + resource_3_cost_count?: InputMaybe; + resource_3_cost_countEQ?: InputMaybe; + resource_3_cost_countGT?: InputMaybe; + resource_3_cost_countGTE?: InputMaybe; + resource_3_cost_countIN?: InputMaybe>>; + resource_3_cost_countLIKE?: InputMaybe; + resource_3_cost_countLT?: InputMaybe; + resource_3_cost_countLTE?: InputMaybe; + resource_3_cost_countNEQ?: InputMaybe; + resource_3_cost_countNOTIN?: InputMaybe>>; + resource_3_cost_countNOTLIKE?: InputMaybe; + resource_3_cost_id?: InputMaybe; + resource_3_cost_idEQ?: InputMaybe; + resource_3_cost_idGT?: InputMaybe; + resource_3_cost_idGTE?: InputMaybe; + resource_3_cost_idIN?: InputMaybe>>; + resource_3_cost_idLIKE?: InputMaybe; + resource_3_cost_idLT?: InputMaybe; + resource_3_cost_idLTE?: InputMaybe; + resource_3_cost_idNEQ?: InputMaybe; + resource_3_cost_idNOTIN?: InputMaybe>>; + resource_3_cost_idNOTLIKE?: InputMaybe; + wheat_base_amount?: InputMaybe; + wheat_base_amountEQ?: InputMaybe; + wheat_base_amountGT?: InputMaybe; + wheat_base_amountGTE?: InputMaybe; + wheat_base_amountIN?: InputMaybe>>; + wheat_base_amountLIKE?: InputMaybe; + wheat_base_amountLT?: InputMaybe; + wheat_base_amountLTE?: InputMaybe; + wheat_base_amountNEQ?: InputMaybe; + wheat_base_amountNOTIN?: InputMaybe>>; + wheat_base_amountNOTLIKE?: InputMaybe; }; export type S0_Eternum_LiquidityEventOrder = { @@ -3241,95 +3241,95 @@ export type S0_Eternum_LiquidityEventOrder = { }; export enum S0_Eternum_LiquidityEventOrderField { - Add = 'ADD', - BankEntityId = 'BANK_ENTITY_ID', - EntityId = 'ENTITY_ID', - LordsAmount = 'LORDS_AMOUNT', - ResourceAmount = 'RESOURCE_AMOUNT', - ResourcePrice = 'RESOURCE_PRICE', - ResourceType = 'RESOURCE_TYPE', - Timestamp = 'TIMESTAMP' + Add = "ADD", + BankEntityId = "BANK_ENTITY_ID", + EntityId = "ENTITY_ID", + LordsAmount = "LORDS_AMOUNT", + ResourceAmount = "RESOURCE_AMOUNT", + ResourcePrice = "RESOURCE_PRICE", + ResourceType = "RESOURCE_TYPE", + Timestamp = "TIMESTAMP", } export type S0_Eternum_LiquidityEventWhereInput = { - add?: InputMaybe; - bank_entity_id?: InputMaybe; - bank_entity_idEQ?: InputMaybe; - bank_entity_idGT?: InputMaybe; - bank_entity_idGTE?: InputMaybe; - bank_entity_idIN?: InputMaybe>>; - bank_entity_idLIKE?: InputMaybe; - bank_entity_idLT?: InputMaybe; - bank_entity_idLTE?: InputMaybe; - bank_entity_idNEQ?: InputMaybe; - bank_entity_idNOTIN?: InputMaybe>>; - bank_entity_idNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - lords_amount?: InputMaybe; - lords_amountEQ?: InputMaybe; - lords_amountGT?: InputMaybe; - lords_amountGTE?: InputMaybe; - lords_amountIN?: InputMaybe>>; - lords_amountLIKE?: InputMaybe; - lords_amountLT?: InputMaybe; - lords_amountLTE?: InputMaybe; - lords_amountNEQ?: InputMaybe; - lords_amountNOTIN?: InputMaybe>>; - lords_amountNOTLIKE?: InputMaybe; - resource_amount?: InputMaybe; - resource_amountEQ?: InputMaybe; - resource_amountGT?: InputMaybe; - resource_amountGTE?: InputMaybe; - resource_amountIN?: InputMaybe>>; - resource_amountLIKE?: InputMaybe; - resource_amountLT?: InputMaybe; - resource_amountLTE?: InputMaybe; - resource_amountNEQ?: InputMaybe; - resource_amountNOTIN?: InputMaybe>>; - resource_amountNOTLIKE?: InputMaybe; - resource_price?: InputMaybe; - resource_priceEQ?: InputMaybe; - resource_priceGT?: InputMaybe; - resource_priceGTE?: InputMaybe; - resource_priceIN?: InputMaybe>>; - resource_priceLIKE?: InputMaybe; - resource_priceLT?: InputMaybe; - resource_priceLTE?: InputMaybe; - resource_priceNEQ?: InputMaybe; - resource_priceNOTIN?: InputMaybe>>; - resource_priceNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + add?: InputMaybe; + bank_entity_id?: InputMaybe; + bank_entity_idEQ?: InputMaybe; + bank_entity_idGT?: InputMaybe; + bank_entity_idGTE?: InputMaybe; + bank_entity_idIN?: InputMaybe>>; + bank_entity_idLIKE?: InputMaybe; + bank_entity_idLT?: InputMaybe; + bank_entity_idLTE?: InputMaybe; + bank_entity_idNEQ?: InputMaybe; + bank_entity_idNOTIN?: InputMaybe>>; + bank_entity_idNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + lords_amount?: InputMaybe; + lords_amountEQ?: InputMaybe; + lords_amountGT?: InputMaybe; + lords_amountGTE?: InputMaybe; + lords_amountIN?: InputMaybe>>; + lords_amountLIKE?: InputMaybe; + lords_amountLT?: InputMaybe; + lords_amountLTE?: InputMaybe; + lords_amountNEQ?: InputMaybe; + lords_amountNOTIN?: InputMaybe>>; + lords_amountNOTLIKE?: InputMaybe; + resource_amount?: InputMaybe; + resource_amountEQ?: InputMaybe; + resource_amountGT?: InputMaybe; + resource_amountGTE?: InputMaybe; + resource_amountIN?: InputMaybe>>; + resource_amountLIKE?: InputMaybe; + resource_amountLT?: InputMaybe; + resource_amountLTE?: InputMaybe; + resource_amountNEQ?: InputMaybe; + resource_amountNOTIN?: InputMaybe>>; + resource_amountNOTLIKE?: InputMaybe; + resource_price?: InputMaybe; + resource_priceEQ?: InputMaybe; + resource_priceGT?: InputMaybe; + resource_priceGTE?: InputMaybe; + resource_priceIN?: InputMaybe>>; + resource_priceLIKE?: InputMaybe; + resource_priceLT?: InputMaybe; + resource_priceLTE?: InputMaybe; + resource_priceNEQ?: InputMaybe; + resource_priceNOTIN?: InputMaybe>>; + resource_priceNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_LiquidityOrder = { @@ -3338,46 +3338,46 @@ export type S0_Eternum_LiquidityOrder = { }; export enum S0_Eternum_LiquidityOrderField { - BankEntityId = 'BANK_ENTITY_ID', - Player = 'PLAYER', - ResourceType = 'RESOURCE_TYPE', - Shares = 'SHARES' + BankEntityId = "BANK_ENTITY_ID", + Player = "PLAYER", + ResourceType = "RESOURCE_TYPE", + Shares = "SHARES", } export type S0_Eternum_LiquidityWhereInput = { - bank_entity_id?: InputMaybe; - bank_entity_idEQ?: InputMaybe; - bank_entity_idGT?: InputMaybe; - bank_entity_idGTE?: InputMaybe; - bank_entity_idIN?: InputMaybe>>; - bank_entity_idLIKE?: InputMaybe; - bank_entity_idLT?: InputMaybe; - bank_entity_idLTE?: InputMaybe; - bank_entity_idNEQ?: InputMaybe; - bank_entity_idNOTIN?: InputMaybe>>; - bank_entity_idNOTLIKE?: InputMaybe; - player?: InputMaybe; - playerEQ?: InputMaybe; - playerGT?: InputMaybe; - playerGTE?: InputMaybe; - playerIN?: InputMaybe>>; - playerLIKE?: InputMaybe; - playerLT?: InputMaybe; - playerLTE?: InputMaybe; - playerNEQ?: InputMaybe; - playerNOTIN?: InputMaybe>>; - playerNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + bank_entity_id?: InputMaybe; + bank_entity_idEQ?: InputMaybe; + bank_entity_idGT?: InputMaybe; + bank_entity_idGTE?: InputMaybe; + bank_entity_idIN?: InputMaybe>>; + bank_entity_idLIKE?: InputMaybe; + bank_entity_idLT?: InputMaybe; + bank_entity_idLTE?: InputMaybe; + bank_entity_idNEQ?: InputMaybe; + bank_entity_idNOTIN?: InputMaybe>>; + bank_entity_idNOTLIKE?: InputMaybe; + player?: InputMaybe; + playerEQ?: InputMaybe; + playerGT?: InputMaybe; + playerGTE?: InputMaybe; + playerIN?: InputMaybe>>; + playerLIKE?: InputMaybe; + playerLT?: InputMaybe; + playerLTE?: InputMaybe; + playerNEQ?: InputMaybe; + playerNOTIN?: InputMaybe>>; + playerNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_MapConfigOrder = { @@ -3386,45 +3386,45 @@ export type S0_Eternum_MapConfigOrder = { }; export enum S0_Eternum_MapConfigOrderField { - ConfigId = 'CONFIG_ID', - RewardResourceAmount = 'REWARD_RESOURCE_AMOUNT', - ShardsMinesFailProbability = 'SHARDS_MINES_FAIL_PROBABILITY' + ConfigId = "CONFIG_ID", + RewardResourceAmount = "REWARD_RESOURCE_AMOUNT", + ShardsMinesFailProbability = "SHARDS_MINES_FAIL_PROBABILITY", } export type S0_Eternum_MapConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - reward_resource_amount?: InputMaybe; - reward_resource_amountEQ?: InputMaybe; - reward_resource_amountGT?: InputMaybe; - reward_resource_amountGTE?: InputMaybe; - reward_resource_amountIN?: InputMaybe>>; - reward_resource_amountLIKE?: InputMaybe; - reward_resource_amountLT?: InputMaybe; - reward_resource_amountLTE?: InputMaybe; - reward_resource_amountNEQ?: InputMaybe; - reward_resource_amountNOTIN?: InputMaybe>>; - reward_resource_amountNOTLIKE?: InputMaybe; - shards_mines_fail_probability?: InputMaybe; - shards_mines_fail_probabilityEQ?: InputMaybe; - shards_mines_fail_probabilityGT?: InputMaybe; - shards_mines_fail_probabilityGTE?: InputMaybe; - shards_mines_fail_probabilityIN?: InputMaybe>>; - shards_mines_fail_probabilityLIKE?: InputMaybe; - shards_mines_fail_probabilityLT?: InputMaybe; - shards_mines_fail_probabilityLTE?: InputMaybe; - shards_mines_fail_probabilityNEQ?: InputMaybe; - shards_mines_fail_probabilityNOTIN?: InputMaybe>>; - shards_mines_fail_probabilityNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + reward_resource_amount?: InputMaybe; + reward_resource_amountEQ?: InputMaybe; + reward_resource_amountGT?: InputMaybe; + reward_resource_amountGTE?: InputMaybe; + reward_resource_amountIN?: InputMaybe>>; + reward_resource_amountLIKE?: InputMaybe; + reward_resource_amountLT?: InputMaybe; + reward_resource_amountLTE?: InputMaybe; + reward_resource_amountNEQ?: InputMaybe; + reward_resource_amountNOTIN?: InputMaybe>>; + reward_resource_amountNOTLIKE?: InputMaybe; + shards_mines_fail_probability?: InputMaybe; + shards_mines_fail_probabilityEQ?: InputMaybe; + shards_mines_fail_probabilityGT?: InputMaybe; + shards_mines_fail_probabilityGTE?: InputMaybe; + shards_mines_fail_probabilityIN?: InputMaybe>>; + shards_mines_fail_probabilityLIKE?: InputMaybe; + shards_mines_fail_probabilityLT?: InputMaybe; + shards_mines_fail_probabilityLTE?: InputMaybe; + shards_mines_fail_probabilityNEQ?: InputMaybe; + shards_mines_fail_probabilityNOTIN?: InputMaybe>>; + shards_mines_fail_probabilityNOTLIKE?: InputMaybe; }; export type S0_Eternum_MapExploredOrder = { @@ -3433,84 +3433,84 @@ export type S0_Eternum_MapExploredOrder = { }; export enum S0_Eternum_MapExploredOrderField { - Biome = 'BIOME', - Col = 'COL', - EntityId = 'ENTITY_ID', - EntityOwnerId = 'ENTITY_OWNER_ID', - Id = 'ID', - Reward = 'REWARD', - Row = 'ROW', - Timestamp = 'TIMESTAMP' + Biome = "BIOME", + Col = "COL", + EntityId = "ENTITY_ID", + EntityOwnerId = "ENTITY_OWNER_ID", + Id = "ID", + Reward = "REWARD", + Row = "ROW", + Timestamp = "TIMESTAMP", } export type S0_Eternum_MapExploredWhereInput = { - biome?: InputMaybe; - col?: InputMaybe; - colEQ?: InputMaybe; - colGT?: InputMaybe; - colGTE?: InputMaybe; - colIN?: InputMaybe>>; - colLIKE?: InputMaybe; - colLT?: InputMaybe; - colLTE?: InputMaybe; - colNEQ?: InputMaybe; - colNOTIN?: InputMaybe>>; - colNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - entity_owner_id?: InputMaybe; - entity_owner_idEQ?: InputMaybe; - entity_owner_idGT?: InputMaybe; - entity_owner_idGTE?: InputMaybe; - entity_owner_idIN?: InputMaybe>>; - entity_owner_idLIKE?: InputMaybe; - entity_owner_idLT?: InputMaybe; - entity_owner_idLTE?: InputMaybe; - entity_owner_idNEQ?: InputMaybe; - entity_owner_idNOTIN?: InputMaybe>>; - entity_owner_idNOTLIKE?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - row?: InputMaybe; - rowEQ?: InputMaybe; - rowGT?: InputMaybe; - rowGTE?: InputMaybe; - rowIN?: InputMaybe>>; - rowLIKE?: InputMaybe; - rowLT?: InputMaybe; - rowLTE?: InputMaybe; - rowNEQ?: InputMaybe; - rowNOTIN?: InputMaybe>>; - rowNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + biome?: InputMaybe; + col?: InputMaybe; + colEQ?: InputMaybe; + colGT?: InputMaybe; + colGTE?: InputMaybe; + colIN?: InputMaybe>>; + colLIKE?: InputMaybe; + colLT?: InputMaybe; + colLTE?: InputMaybe; + colNEQ?: InputMaybe; + colNOTIN?: InputMaybe>>; + colNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + entity_owner_id?: InputMaybe; + entity_owner_idEQ?: InputMaybe; + entity_owner_idGT?: InputMaybe; + entity_owner_idGTE?: InputMaybe; + entity_owner_idIN?: InputMaybe>>; + entity_owner_idLIKE?: InputMaybe; + entity_owner_idLT?: InputMaybe; + entity_owner_idLTE?: InputMaybe; + entity_owner_idNEQ?: InputMaybe; + entity_owner_idNOTIN?: InputMaybe>>; + entity_owner_idNOTLIKE?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + row?: InputMaybe; + rowEQ?: InputMaybe; + rowGT?: InputMaybe; + rowGTE?: InputMaybe; + rowIN?: InputMaybe>>; + rowLIKE?: InputMaybe; + rowLT?: InputMaybe; + rowLTE?: InputMaybe; + rowNEQ?: InputMaybe; + rowNOTIN?: InputMaybe>>; + rowNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_MarketOrder = { @@ -3519,58 +3519,58 @@ export type S0_Eternum_MarketOrder = { }; export enum S0_Eternum_MarketOrderField { - BankEntityId = 'BANK_ENTITY_ID', - LordsAmount = 'LORDS_AMOUNT', - ResourceAmount = 'RESOURCE_AMOUNT', - ResourceType = 'RESOURCE_TYPE', - TotalShares = 'TOTAL_SHARES' + BankEntityId = "BANK_ENTITY_ID", + LordsAmount = "LORDS_AMOUNT", + ResourceAmount = "RESOURCE_AMOUNT", + ResourceType = "RESOURCE_TYPE", + TotalShares = "TOTAL_SHARES", } export type S0_Eternum_MarketWhereInput = { - bank_entity_id?: InputMaybe; - bank_entity_idEQ?: InputMaybe; - bank_entity_idGT?: InputMaybe; - bank_entity_idGTE?: InputMaybe; - bank_entity_idIN?: InputMaybe>>; - bank_entity_idLIKE?: InputMaybe; - bank_entity_idLT?: InputMaybe; - bank_entity_idLTE?: InputMaybe; - bank_entity_idNEQ?: InputMaybe; - bank_entity_idNOTIN?: InputMaybe>>; - bank_entity_idNOTLIKE?: InputMaybe; - lords_amount?: InputMaybe; - lords_amountEQ?: InputMaybe; - lords_amountGT?: InputMaybe; - lords_amountGTE?: InputMaybe; - lords_amountIN?: InputMaybe>>; - lords_amountLIKE?: InputMaybe; - lords_amountLT?: InputMaybe; - lords_amountLTE?: InputMaybe; - lords_amountNEQ?: InputMaybe; - lords_amountNOTIN?: InputMaybe>>; - lords_amountNOTLIKE?: InputMaybe; - resource_amount?: InputMaybe; - resource_amountEQ?: InputMaybe; - resource_amountGT?: InputMaybe; - resource_amountGTE?: InputMaybe; - resource_amountIN?: InputMaybe>>; - resource_amountLIKE?: InputMaybe; - resource_amountLT?: InputMaybe; - resource_amountLTE?: InputMaybe; - resource_amountNEQ?: InputMaybe; - resource_amountNOTIN?: InputMaybe>>; - resource_amountNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + bank_entity_id?: InputMaybe; + bank_entity_idEQ?: InputMaybe; + bank_entity_idGT?: InputMaybe; + bank_entity_idGTE?: InputMaybe; + bank_entity_idIN?: InputMaybe>>; + bank_entity_idLIKE?: InputMaybe; + bank_entity_idLT?: InputMaybe; + bank_entity_idLTE?: InputMaybe; + bank_entity_idNEQ?: InputMaybe; + bank_entity_idNOTIN?: InputMaybe>>; + bank_entity_idNOTLIKE?: InputMaybe; + lords_amount?: InputMaybe; + lords_amountEQ?: InputMaybe; + lords_amountGT?: InputMaybe; + lords_amountGTE?: InputMaybe; + lords_amountIN?: InputMaybe>>; + lords_amountLIKE?: InputMaybe; + lords_amountLT?: InputMaybe; + lords_amountLTE?: InputMaybe; + lords_amountNEQ?: InputMaybe; + lords_amountNOTIN?: InputMaybe>>; + lords_amountNOTLIKE?: InputMaybe; + resource_amount?: InputMaybe; + resource_amountEQ?: InputMaybe; + resource_amountGT?: InputMaybe; + resource_amountGTE?: InputMaybe; + resource_amountIN?: InputMaybe>>; + resource_amountLIKE?: InputMaybe; + resource_amountLT?: InputMaybe; + resource_amountLTE?: InputMaybe; + resource_amountNEQ?: InputMaybe; + resource_amountNOTIN?: InputMaybe>>; + resource_amountNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_MercenariesConfigOrder = { @@ -3579,94 +3579,94 @@ export type S0_Eternum_MercenariesConfigOrder = { }; export enum S0_Eternum_MercenariesConfigOrderField { - ConfigId = 'CONFIG_ID', - CrossbowmenLowerBound = 'CROSSBOWMEN_LOWER_BOUND', - CrossbowmenUpperBound = 'CROSSBOWMEN_UPPER_BOUND', - KnightsLowerBound = 'KNIGHTS_LOWER_BOUND', - KnightsUpperBound = 'KNIGHTS_UPPER_BOUND', - PaladinsLowerBound = 'PALADINS_LOWER_BOUND', - PaladinsUpperBound = 'PALADINS_UPPER_BOUND', - Rewards = 'REWARDS' + ConfigId = "CONFIG_ID", + CrossbowmenLowerBound = "CROSSBOWMEN_LOWER_BOUND", + CrossbowmenUpperBound = "CROSSBOWMEN_UPPER_BOUND", + KnightsLowerBound = "KNIGHTS_LOWER_BOUND", + KnightsUpperBound = "KNIGHTS_UPPER_BOUND", + PaladinsLowerBound = "PALADINS_LOWER_BOUND", + PaladinsUpperBound = "PALADINS_UPPER_BOUND", + Rewards = "REWARDS", } export type S0_Eternum_MercenariesConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - crossbowmen_lower_bound?: InputMaybe; - crossbowmen_lower_boundEQ?: InputMaybe; - crossbowmen_lower_boundGT?: InputMaybe; - crossbowmen_lower_boundGTE?: InputMaybe; - crossbowmen_lower_boundIN?: InputMaybe>>; - crossbowmen_lower_boundLIKE?: InputMaybe; - crossbowmen_lower_boundLT?: InputMaybe; - crossbowmen_lower_boundLTE?: InputMaybe; - crossbowmen_lower_boundNEQ?: InputMaybe; - crossbowmen_lower_boundNOTIN?: InputMaybe>>; - crossbowmen_lower_boundNOTLIKE?: InputMaybe; - crossbowmen_upper_bound?: InputMaybe; - crossbowmen_upper_boundEQ?: InputMaybe; - crossbowmen_upper_boundGT?: InputMaybe; - crossbowmen_upper_boundGTE?: InputMaybe; - crossbowmen_upper_boundIN?: InputMaybe>>; - crossbowmen_upper_boundLIKE?: InputMaybe; - crossbowmen_upper_boundLT?: InputMaybe; - crossbowmen_upper_boundLTE?: InputMaybe; - crossbowmen_upper_boundNEQ?: InputMaybe; - crossbowmen_upper_boundNOTIN?: InputMaybe>>; - crossbowmen_upper_boundNOTLIKE?: InputMaybe; - knights_lower_bound?: InputMaybe; - knights_lower_boundEQ?: InputMaybe; - knights_lower_boundGT?: InputMaybe; - knights_lower_boundGTE?: InputMaybe; - knights_lower_boundIN?: InputMaybe>>; - knights_lower_boundLIKE?: InputMaybe; - knights_lower_boundLT?: InputMaybe; - knights_lower_boundLTE?: InputMaybe; - knights_lower_boundNEQ?: InputMaybe; - knights_lower_boundNOTIN?: InputMaybe>>; - knights_lower_boundNOTLIKE?: InputMaybe; - knights_upper_bound?: InputMaybe; - knights_upper_boundEQ?: InputMaybe; - knights_upper_boundGT?: InputMaybe; - knights_upper_boundGTE?: InputMaybe; - knights_upper_boundIN?: InputMaybe>>; - knights_upper_boundLIKE?: InputMaybe; - knights_upper_boundLT?: InputMaybe; - knights_upper_boundLTE?: InputMaybe; - knights_upper_boundNEQ?: InputMaybe; - knights_upper_boundNOTIN?: InputMaybe>>; - knights_upper_boundNOTLIKE?: InputMaybe; - paladins_lower_bound?: InputMaybe; - paladins_lower_boundEQ?: InputMaybe; - paladins_lower_boundGT?: InputMaybe; - paladins_lower_boundGTE?: InputMaybe; - paladins_lower_boundIN?: InputMaybe>>; - paladins_lower_boundLIKE?: InputMaybe; - paladins_lower_boundLT?: InputMaybe; - paladins_lower_boundLTE?: InputMaybe; - paladins_lower_boundNEQ?: InputMaybe; - paladins_lower_boundNOTIN?: InputMaybe>>; - paladins_lower_boundNOTLIKE?: InputMaybe; - paladins_upper_bound?: InputMaybe; - paladins_upper_boundEQ?: InputMaybe; - paladins_upper_boundGT?: InputMaybe; - paladins_upper_boundGTE?: InputMaybe; - paladins_upper_boundIN?: InputMaybe>>; - paladins_upper_boundLIKE?: InputMaybe; - paladins_upper_boundLT?: InputMaybe; - paladins_upper_boundLTE?: InputMaybe; - paladins_upper_boundNEQ?: InputMaybe; - paladins_upper_boundNOTIN?: InputMaybe>>; - paladins_upper_boundNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + crossbowmen_lower_bound?: InputMaybe; + crossbowmen_lower_boundEQ?: InputMaybe; + crossbowmen_lower_boundGT?: InputMaybe; + crossbowmen_lower_boundGTE?: InputMaybe; + crossbowmen_lower_boundIN?: InputMaybe>>; + crossbowmen_lower_boundLIKE?: InputMaybe; + crossbowmen_lower_boundLT?: InputMaybe; + crossbowmen_lower_boundLTE?: InputMaybe; + crossbowmen_lower_boundNEQ?: InputMaybe; + crossbowmen_lower_boundNOTIN?: InputMaybe>>; + crossbowmen_lower_boundNOTLIKE?: InputMaybe; + crossbowmen_upper_bound?: InputMaybe; + crossbowmen_upper_boundEQ?: InputMaybe; + crossbowmen_upper_boundGT?: InputMaybe; + crossbowmen_upper_boundGTE?: InputMaybe; + crossbowmen_upper_boundIN?: InputMaybe>>; + crossbowmen_upper_boundLIKE?: InputMaybe; + crossbowmen_upper_boundLT?: InputMaybe; + crossbowmen_upper_boundLTE?: InputMaybe; + crossbowmen_upper_boundNEQ?: InputMaybe; + crossbowmen_upper_boundNOTIN?: InputMaybe>>; + crossbowmen_upper_boundNOTLIKE?: InputMaybe; + knights_lower_bound?: InputMaybe; + knights_lower_boundEQ?: InputMaybe; + knights_lower_boundGT?: InputMaybe; + knights_lower_boundGTE?: InputMaybe; + knights_lower_boundIN?: InputMaybe>>; + knights_lower_boundLIKE?: InputMaybe; + knights_lower_boundLT?: InputMaybe; + knights_lower_boundLTE?: InputMaybe; + knights_lower_boundNEQ?: InputMaybe; + knights_lower_boundNOTIN?: InputMaybe>>; + knights_lower_boundNOTLIKE?: InputMaybe; + knights_upper_bound?: InputMaybe; + knights_upper_boundEQ?: InputMaybe; + knights_upper_boundGT?: InputMaybe; + knights_upper_boundGTE?: InputMaybe; + knights_upper_boundIN?: InputMaybe>>; + knights_upper_boundLIKE?: InputMaybe; + knights_upper_boundLT?: InputMaybe; + knights_upper_boundLTE?: InputMaybe; + knights_upper_boundNEQ?: InputMaybe; + knights_upper_boundNOTIN?: InputMaybe>>; + knights_upper_boundNOTLIKE?: InputMaybe; + paladins_lower_bound?: InputMaybe; + paladins_lower_boundEQ?: InputMaybe; + paladins_lower_boundGT?: InputMaybe; + paladins_lower_boundGTE?: InputMaybe; + paladins_lower_boundIN?: InputMaybe>>; + paladins_lower_boundLIKE?: InputMaybe; + paladins_lower_boundLT?: InputMaybe; + paladins_lower_boundLTE?: InputMaybe; + paladins_lower_boundNEQ?: InputMaybe; + paladins_lower_boundNOTIN?: InputMaybe>>; + paladins_lower_boundNOTLIKE?: InputMaybe; + paladins_upper_bound?: InputMaybe; + paladins_upper_boundEQ?: InputMaybe; + paladins_upper_boundGT?: InputMaybe; + paladins_upper_boundGTE?: InputMaybe; + paladins_upper_boundIN?: InputMaybe>>; + paladins_upper_boundLIKE?: InputMaybe; + paladins_upper_boundLT?: InputMaybe; + paladins_upper_boundLTE?: InputMaybe; + paladins_upper_boundNEQ?: InputMaybe; + paladins_upper_boundNOTIN?: InputMaybe>>; + paladins_upper_boundNOTLIKE?: InputMaybe; }; export type S0_Eternum_MessageOrder = { @@ -3675,69 +3675,69 @@ export type S0_Eternum_MessageOrder = { }; export enum S0_Eternum_MessageOrderField { - Channel = 'CHANNEL', - Content = 'CONTENT', - Identity = 'IDENTITY', - Salt = 'SALT', - Timestamp = 'TIMESTAMP' + Channel = "CHANNEL", + Content = "CONTENT", + Identity = "IDENTITY", + Salt = "SALT", + Timestamp = "TIMESTAMP", } export type S0_Eternum_MessageWhereInput = { - channel?: InputMaybe; - channelEQ?: InputMaybe; - channelGT?: InputMaybe; - channelGTE?: InputMaybe; - channelIN?: InputMaybe>>; - channelLIKE?: InputMaybe; - channelLT?: InputMaybe; - channelLTE?: InputMaybe; - channelNEQ?: InputMaybe; - channelNOTIN?: InputMaybe>>; - channelNOTLIKE?: InputMaybe; - content?: InputMaybe; - contentEQ?: InputMaybe; - contentGT?: InputMaybe; - contentGTE?: InputMaybe; - contentIN?: InputMaybe>>; - contentLIKE?: InputMaybe; - contentLT?: InputMaybe; - contentLTE?: InputMaybe; - contentNEQ?: InputMaybe; - contentNOTIN?: InputMaybe>>; - contentNOTLIKE?: InputMaybe; - identity?: InputMaybe; - identityEQ?: InputMaybe; - identityGT?: InputMaybe; - identityGTE?: InputMaybe; - identityIN?: InputMaybe>>; - identityLIKE?: InputMaybe; - identityLT?: InputMaybe; - identityLTE?: InputMaybe; - identityNEQ?: InputMaybe; - identityNOTIN?: InputMaybe>>; - identityNOTLIKE?: InputMaybe; - salt?: InputMaybe; - saltEQ?: InputMaybe; - saltGT?: InputMaybe; - saltGTE?: InputMaybe; - saltIN?: InputMaybe>>; - saltLIKE?: InputMaybe; - saltLT?: InputMaybe; - saltLTE?: InputMaybe; - saltNEQ?: InputMaybe; - saltNOTIN?: InputMaybe>>; - saltNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + channel?: InputMaybe; + channelEQ?: InputMaybe; + channelGT?: InputMaybe; + channelGTE?: InputMaybe; + channelIN?: InputMaybe>>; + channelLIKE?: InputMaybe; + channelLT?: InputMaybe; + channelLTE?: InputMaybe; + channelNEQ?: InputMaybe; + channelNOTIN?: InputMaybe>>; + channelNOTLIKE?: InputMaybe; + content?: InputMaybe; + contentEQ?: InputMaybe; + contentGT?: InputMaybe; + contentGTE?: InputMaybe; + contentIN?: InputMaybe>>; + contentLIKE?: InputMaybe; + contentLT?: InputMaybe; + contentLTE?: InputMaybe; + contentNEQ?: InputMaybe; + contentNOTIN?: InputMaybe>>; + contentNOTLIKE?: InputMaybe; + identity?: InputMaybe; + identityEQ?: InputMaybe; + identityGT?: InputMaybe; + identityGTE?: InputMaybe; + identityIN?: InputMaybe>>; + identityLIKE?: InputMaybe; + identityLT?: InputMaybe; + identityLTE?: InputMaybe; + identityNEQ?: InputMaybe; + identityNOTIN?: InputMaybe>>; + identityNOTLIKE?: InputMaybe; + salt?: InputMaybe; + saltEQ?: InputMaybe; + saltGT?: InputMaybe; + saltGTE?: InputMaybe; + saltIN?: InputMaybe>>; + saltLIKE?: InputMaybe; + saltLT?: InputMaybe; + saltLTE?: InputMaybe; + saltNEQ?: InputMaybe; + saltNOTIN?: InputMaybe>>; + saltNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_MovableOrder = { @@ -3746,85 +3746,85 @@ export type S0_Eternum_MovableOrder = { }; export enum S0_Eternum_MovableOrderField { - Blocked = 'BLOCKED', - EntityId = 'ENTITY_ID', - IntermediateCoordX = 'INTERMEDIATE_COORD_X', - IntermediateCoordY = 'INTERMEDIATE_COORD_Y', - RoundTrip = 'ROUND_TRIP', - SecPerKm = 'SEC_PER_KM', - StartCoordX = 'START_COORD_X', - StartCoordY = 'START_COORD_Y' + Blocked = "BLOCKED", + EntityId = "ENTITY_ID", + IntermediateCoordX = "INTERMEDIATE_COORD_X", + IntermediateCoordY = "INTERMEDIATE_COORD_Y", + RoundTrip = "ROUND_TRIP", + SecPerKm = "SEC_PER_KM", + StartCoordX = "START_COORD_X", + StartCoordY = "START_COORD_Y", } export type S0_Eternum_MovableWhereInput = { - blocked?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - intermediate_coord_x?: InputMaybe; - intermediate_coord_xEQ?: InputMaybe; - intermediate_coord_xGT?: InputMaybe; - intermediate_coord_xGTE?: InputMaybe; - intermediate_coord_xIN?: InputMaybe>>; - intermediate_coord_xLIKE?: InputMaybe; - intermediate_coord_xLT?: InputMaybe; - intermediate_coord_xLTE?: InputMaybe; - intermediate_coord_xNEQ?: InputMaybe; - intermediate_coord_xNOTIN?: InputMaybe>>; - intermediate_coord_xNOTLIKE?: InputMaybe; - intermediate_coord_y?: InputMaybe; - intermediate_coord_yEQ?: InputMaybe; - intermediate_coord_yGT?: InputMaybe; - intermediate_coord_yGTE?: InputMaybe; - intermediate_coord_yIN?: InputMaybe>>; - intermediate_coord_yLIKE?: InputMaybe; - intermediate_coord_yLT?: InputMaybe; - intermediate_coord_yLTE?: InputMaybe; - intermediate_coord_yNEQ?: InputMaybe; - intermediate_coord_yNOTIN?: InputMaybe>>; - intermediate_coord_yNOTLIKE?: InputMaybe; - round_trip?: InputMaybe; - sec_per_km?: InputMaybe; - sec_per_kmEQ?: InputMaybe; - sec_per_kmGT?: InputMaybe; - sec_per_kmGTE?: InputMaybe; - sec_per_kmIN?: InputMaybe>>; - sec_per_kmLIKE?: InputMaybe; - sec_per_kmLT?: InputMaybe; - sec_per_kmLTE?: InputMaybe; - sec_per_kmNEQ?: InputMaybe; - sec_per_kmNOTIN?: InputMaybe>>; - sec_per_kmNOTLIKE?: InputMaybe; - start_coord_x?: InputMaybe; - start_coord_xEQ?: InputMaybe; - start_coord_xGT?: InputMaybe; - start_coord_xGTE?: InputMaybe; - start_coord_xIN?: InputMaybe>>; - start_coord_xLIKE?: InputMaybe; - start_coord_xLT?: InputMaybe; - start_coord_xLTE?: InputMaybe; - start_coord_xNEQ?: InputMaybe; - start_coord_xNOTIN?: InputMaybe>>; - start_coord_xNOTLIKE?: InputMaybe; - start_coord_y?: InputMaybe; - start_coord_yEQ?: InputMaybe; - start_coord_yGT?: InputMaybe; - start_coord_yGTE?: InputMaybe; - start_coord_yIN?: InputMaybe>>; - start_coord_yLIKE?: InputMaybe; - start_coord_yLT?: InputMaybe; - start_coord_yLTE?: InputMaybe; - start_coord_yNEQ?: InputMaybe; - start_coord_yNOTIN?: InputMaybe>>; - start_coord_yNOTLIKE?: InputMaybe; + blocked?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + intermediate_coord_x?: InputMaybe; + intermediate_coord_xEQ?: InputMaybe; + intermediate_coord_xGT?: InputMaybe; + intermediate_coord_xGTE?: InputMaybe; + intermediate_coord_xIN?: InputMaybe>>; + intermediate_coord_xLIKE?: InputMaybe; + intermediate_coord_xLT?: InputMaybe; + intermediate_coord_xLTE?: InputMaybe; + intermediate_coord_xNEQ?: InputMaybe; + intermediate_coord_xNOTIN?: InputMaybe>>; + intermediate_coord_xNOTLIKE?: InputMaybe; + intermediate_coord_y?: InputMaybe; + intermediate_coord_yEQ?: InputMaybe; + intermediate_coord_yGT?: InputMaybe; + intermediate_coord_yGTE?: InputMaybe; + intermediate_coord_yIN?: InputMaybe>>; + intermediate_coord_yLIKE?: InputMaybe; + intermediate_coord_yLT?: InputMaybe; + intermediate_coord_yLTE?: InputMaybe; + intermediate_coord_yNEQ?: InputMaybe; + intermediate_coord_yNOTIN?: InputMaybe>>; + intermediate_coord_yNOTLIKE?: InputMaybe; + round_trip?: InputMaybe; + sec_per_km?: InputMaybe; + sec_per_kmEQ?: InputMaybe; + sec_per_kmGT?: InputMaybe; + sec_per_kmGTE?: InputMaybe; + sec_per_kmIN?: InputMaybe>>; + sec_per_kmLIKE?: InputMaybe; + sec_per_kmLT?: InputMaybe; + sec_per_kmLTE?: InputMaybe; + sec_per_kmNEQ?: InputMaybe; + sec_per_kmNOTIN?: InputMaybe>>; + sec_per_kmNOTLIKE?: InputMaybe; + start_coord_x?: InputMaybe; + start_coord_xEQ?: InputMaybe; + start_coord_xGT?: InputMaybe; + start_coord_xGTE?: InputMaybe; + start_coord_xIN?: InputMaybe>>; + start_coord_xLIKE?: InputMaybe; + start_coord_xLT?: InputMaybe; + start_coord_xLTE?: InputMaybe; + start_coord_xNEQ?: InputMaybe; + start_coord_xNOTIN?: InputMaybe>>; + start_coord_xNOTLIKE?: InputMaybe; + start_coord_y?: InputMaybe; + start_coord_yEQ?: InputMaybe; + start_coord_yGT?: InputMaybe; + start_coord_yGTE?: InputMaybe; + start_coord_yIN?: InputMaybe>>; + start_coord_yLIKE?: InputMaybe; + start_coord_yLT?: InputMaybe; + start_coord_yLTE?: InputMaybe; + start_coord_yNEQ?: InputMaybe; + start_coord_yNOTIN?: InputMaybe>>; + start_coord_yNOTLIKE?: InputMaybe; }; export type S0_Eternum_OrdersOrder = { @@ -3833,33 +3833,33 @@ export type S0_Eternum_OrdersOrder = { }; export enum S0_Eternum_OrdersOrderField { - HyperstructureCount = 'HYPERSTRUCTURE_COUNT', - OrderId = 'ORDER_ID' + HyperstructureCount = "HYPERSTRUCTURE_COUNT", + OrderId = "ORDER_ID", } export type S0_Eternum_OrdersWhereInput = { - hyperstructure_count?: InputMaybe; - hyperstructure_countEQ?: InputMaybe; - hyperstructure_countGT?: InputMaybe; - hyperstructure_countGTE?: InputMaybe; - hyperstructure_countIN?: InputMaybe>>; - hyperstructure_countLIKE?: InputMaybe; - hyperstructure_countLT?: InputMaybe; - hyperstructure_countLTE?: InputMaybe; - hyperstructure_countNEQ?: InputMaybe; - hyperstructure_countNOTIN?: InputMaybe>>; - hyperstructure_countNOTLIKE?: InputMaybe; - order_id?: InputMaybe; - order_idEQ?: InputMaybe; - order_idGT?: InputMaybe; - order_idGTE?: InputMaybe; - order_idIN?: InputMaybe>>; - order_idLIKE?: InputMaybe; - order_idLT?: InputMaybe; - order_idLTE?: InputMaybe; - order_idNEQ?: InputMaybe; - order_idNOTIN?: InputMaybe>>; - order_idNOTLIKE?: InputMaybe; + hyperstructure_count?: InputMaybe; + hyperstructure_countEQ?: InputMaybe; + hyperstructure_countGT?: InputMaybe; + hyperstructure_countGTE?: InputMaybe; + hyperstructure_countIN?: InputMaybe>>; + hyperstructure_countLIKE?: InputMaybe; + hyperstructure_countLT?: InputMaybe; + hyperstructure_countLTE?: InputMaybe; + hyperstructure_countNEQ?: InputMaybe; + hyperstructure_countNOTIN?: InputMaybe>>; + hyperstructure_countNOTLIKE?: InputMaybe; + order_id?: InputMaybe; + order_idEQ?: InputMaybe; + order_idGT?: InputMaybe; + order_idGTE?: InputMaybe; + order_idIN?: InputMaybe>>; + order_idLIKE?: InputMaybe; + order_idLT?: InputMaybe; + order_idLTE?: InputMaybe; + order_idNEQ?: InputMaybe; + order_idNOTIN?: InputMaybe>>; + order_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_OwnedResourcesTrackerOrder = { @@ -3868,33 +3868,33 @@ export type S0_Eternum_OwnedResourcesTrackerOrder = { }; export enum S0_Eternum_OwnedResourcesTrackerOrderField { - EntityId = 'ENTITY_ID', - ResourceTypes = 'RESOURCE_TYPES' + EntityId = "ENTITY_ID", + ResourceTypes = "RESOURCE_TYPES", } export type S0_Eternum_OwnedResourcesTrackerWhereInput = { - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - resource_types?: InputMaybe; - resource_typesEQ?: InputMaybe; - resource_typesGT?: InputMaybe; - resource_typesGTE?: InputMaybe; - resource_typesIN?: InputMaybe>>; - resource_typesLIKE?: InputMaybe; - resource_typesLT?: InputMaybe; - resource_typesLTE?: InputMaybe; - resource_typesNEQ?: InputMaybe; - resource_typesNOTIN?: InputMaybe>>; - resource_typesNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + resource_types?: InputMaybe; + resource_typesEQ?: InputMaybe; + resource_typesGT?: InputMaybe; + resource_typesGTE?: InputMaybe; + resource_typesIN?: InputMaybe>>; + resource_typesLIKE?: InputMaybe; + resource_typesLT?: InputMaybe; + resource_typesLTE?: InputMaybe; + resource_typesNEQ?: InputMaybe; + resource_typesNOTIN?: InputMaybe>>; + resource_typesNOTLIKE?: InputMaybe; }; export type S0_Eternum_OwnerOrder = { @@ -3903,33 +3903,33 @@ export type S0_Eternum_OwnerOrder = { }; export enum S0_Eternum_OwnerOrderField { - Address = 'ADDRESS', - EntityId = 'ENTITY_ID' + Address = "ADDRESS", + EntityId = "ENTITY_ID", } export type S0_Eternum_OwnerWhereInput = { - address?: InputMaybe; - addressEQ?: InputMaybe; - addressGT?: InputMaybe; - addressGTE?: InputMaybe; - addressIN?: InputMaybe>>; - addressLIKE?: InputMaybe; - addressLT?: InputMaybe; - addressLTE?: InputMaybe; - addressNEQ?: InputMaybe; - addressNOTIN?: InputMaybe>>; - addressNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; + address?: InputMaybe; + addressEQ?: InputMaybe; + addressGT?: InputMaybe; + addressGTE?: InputMaybe; + addressIN?: InputMaybe>>; + addressLIKE?: InputMaybe; + addressLT?: InputMaybe; + addressLTE?: InputMaybe; + addressNEQ?: InputMaybe; + addressNOTIN?: InputMaybe>>; + addressNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_PopulationConfigOrder = { @@ -3938,33 +3938,33 @@ export type S0_Eternum_PopulationConfigOrder = { }; export enum S0_Eternum_PopulationConfigOrderField { - BasePopulation = 'BASE_POPULATION', - ConfigId = 'CONFIG_ID' + BasePopulation = "BASE_POPULATION", + ConfigId = "CONFIG_ID", } export type S0_Eternum_PopulationConfigWhereInput = { - base_population?: InputMaybe; - base_populationEQ?: InputMaybe; - base_populationGT?: InputMaybe; - base_populationGTE?: InputMaybe; - base_populationIN?: InputMaybe>>; - base_populationLIKE?: InputMaybe; - base_populationLT?: InputMaybe; - base_populationLTE?: InputMaybe; - base_populationNEQ?: InputMaybe; - base_populationNOTIN?: InputMaybe>>; - base_populationNOTLIKE?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; + base_population?: InputMaybe; + base_populationEQ?: InputMaybe; + base_populationGT?: InputMaybe; + base_populationGTE?: InputMaybe; + base_populationIN?: InputMaybe>>; + base_populationLIKE?: InputMaybe; + base_populationLT?: InputMaybe; + base_populationLTE?: InputMaybe; + base_populationNEQ?: InputMaybe; + base_populationNOTIN?: InputMaybe>>; + base_populationNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_PopulationOrder = { @@ -3973,45 +3973,45 @@ export type S0_Eternum_PopulationOrder = { }; export enum S0_Eternum_PopulationOrderField { - Capacity = 'CAPACITY', - EntityId = 'ENTITY_ID', - Population = 'POPULATION' + Capacity = "CAPACITY", + EntityId = "ENTITY_ID", + Population = "POPULATION", } export type S0_Eternum_PopulationWhereInput = { - capacity?: InputMaybe; - capacityEQ?: InputMaybe; - capacityGT?: InputMaybe; - capacityGTE?: InputMaybe; - capacityIN?: InputMaybe>>; - capacityLIKE?: InputMaybe; - capacityLT?: InputMaybe; - capacityLTE?: InputMaybe; - capacityNEQ?: InputMaybe; - capacityNOTIN?: InputMaybe>>; - capacityNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - population?: InputMaybe; - populationEQ?: InputMaybe; - populationGT?: InputMaybe; - populationGTE?: InputMaybe; - populationIN?: InputMaybe>>; - populationLIKE?: InputMaybe; - populationLT?: InputMaybe; - populationLTE?: InputMaybe; - populationNEQ?: InputMaybe; - populationNOTIN?: InputMaybe>>; - populationNOTLIKE?: InputMaybe; + capacity?: InputMaybe; + capacityEQ?: InputMaybe; + capacityGT?: InputMaybe; + capacityGTE?: InputMaybe; + capacityIN?: InputMaybe>>; + capacityLIKE?: InputMaybe; + capacityLT?: InputMaybe; + capacityLTE?: InputMaybe; + capacityNEQ?: InputMaybe; + capacityNOTIN?: InputMaybe>>; + capacityNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + population?: InputMaybe; + populationEQ?: InputMaybe; + populationGT?: InputMaybe; + populationGTE?: InputMaybe; + populationIN?: InputMaybe>>; + populationLIKE?: InputMaybe; + populationLT?: InputMaybe; + populationLTE?: InputMaybe; + populationNEQ?: InputMaybe; + populationNOTIN?: InputMaybe>>; + populationNOTLIKE?: InputMaybe; }; export type S0_Eternum_PositionOrder = { @@ -4020,45 +4020,45 @@ export type S0_Eternum_PositionOrder = { }; export enum S0_Eternum_PositionOrderField { - EntityId = 'ENTITY_ID', - X = 'X', - Y = 'Y' + EntityId = "ENTITY_ID", + X = "X", + Y = "Y", } export type S0_Eternum_PositionWhereInput = { - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - x?: InputMaybe; - xEQ?: InputMaybe; - xGT?: InputMaybe; - xGTE?: InputMaybe; - xIN?: InputMaybe>>; - xLIKE?: InputMaybe; - xLT?: InputMaybe; - xLTE?: InputMaybe; - xNEQ?: InputMaybe; - xNOTIN?: InputMaybe>>; - xNOTLIKE?: InputMaybe; - y?: InputMaybe; - yEQ?: InputMaybe; - yGT?: InputMaybe; - yGTE?: InputMaybe; - yIN?: InputMaybe>>; - yLIKE?: InputMaybe; - yLT?: InputMaybe; - yLTE?: InputMaybe; - yNEQ?: InputMaybe; - yNOTIN?: InputMaybe>>; - yNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + x?: InputMaybe; + xEQ?: InputMaybe; + xGT?: InputMaybe; + xGTE?: InputMaybe; + xIN?: InputMaybe>>; + xLIKE?: InputMaybe; + xLT?: InputMaybe; + xLTE?: InputMaybe; + xNEQ?: InputMaybe; + xNOTIN?: InputMaybe>>; + xNOTLIKE?: InputMaybe; + y?: InputMaybe; + yEQ?: InputMaybe; + yGT?: InputMaybe; + yGTE?: InputMaybe; + yIN?: InputMaybe>>; + yLIKE?: InputMaybe; + yLT?: InputMaybe; + yLTE?: InputMaybe; + yNEQ?: InputMaybe; + yNOTIN?: InputMaybe>>; + yNOTLIKE?: InputMaybe; }; export type S0_Eternum_ProductionConfigOrder = { @@ -4067,57 +4067,57 @@ export type S0_Eternum_ProductionConfigOrder = { }; export enum S0_Eternum_ProductionConfigOrderField { - Amount = 'AMOUNT', - InputCount = 'INPUT_COUNT', - OutputCount = 'OUTPUT_COUNT', - ResourceType = 'RESOURCE_TYPE' + Amount = "AMOUNT", + InputCount = "INPUT_COUNT", + OutputCount = "OUTPUT_COUNT", + ResourceType = "RESOURCE_TYPE", } export type S0_Eternum_ProductionConfigWhereInput = { - amount?: InputMaybe; - amountEQ?: InputMaybe; - amountGT?: InputMaybe; - amountGTE?: InputMaybe; - amountIN?: InputMaybe>>; - amountLIKE?: InputMaybe; - amountLT?: InputMaybe; - amountLTE?: InputMaybe; - amountNEQ?: InputMaybe; - amountNOTIN?: InputMaybe>>; - amountNOTLIKE?: InputMaybe; - input_count?: InputMaybe; - input_countEQ?: InputMaybe; - input_countGT?: InputMaybe; - input_countGTE?: InputMaybe; - input_countIN?: InputMaybe>>; - input_countLIKE?: InputMaybe; - input_countLT?: InputMaybe; - input_countLTE?: InputMaybe; - input_countNEQ?: InputMaybe; - input_countNOTIN?: InputMaybe>>; - input_countNOTLIKE?: InputMaybe; - output_count?: InputMaybe; - output_countEQ?: InputMaybe; - output_countGT?: InputMaybe; - output_countGTE?: InputMaybe; - output_countIN?: InputMaybe>>; - output_countLIKE?: InputMaybe; - output_countLT?: InputMaybe; - output_countLTE?: InputMaybe; - output_countNEQ?: InputMaybe; - output_countNOTIN?: InputMaybe>>; - output_countNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + amount?: InputMaybe; + amountEQ?: InputMaybe; + amountGT?: InputMaybe; + amountGTE?: InputMaybe; + amountIN?: InputMaybe>>; + amountLIKE?: InputMaybe; + amountLT?: InputMaybe; + amountLTE?: InputMaybe; + amountNEQ?: InputMaybe; + amountNOTIN?: InputMaybe>>; + amountNOTLIKE?: InputMaybe; + input_count?: InputMaybe; + input_countEQ?: InputMaybe; + input_countGT?: InputMaybe; + input_countGTE?: InputMaybe; + input_countIN?: InputMaybe>>; + input_countLIKE?: InputMaybe; + input_countLT?: InputMaybe; + input_countLTE?: InputMaybe; + input_countNEQ?: InputMaybe; + input_countNOTIN?: InputMaybe>>; + input_countNOTLIKE?: InputMaybe; + output_count?: InputMaybe; + output_countEQ?: InputMaybe; + output_countGT?: InputMaybe; + output_countGTE?: InputMaybe; + output_countIN?: InputMaybe>>; + output_countLIKE?: InputMaybe; + output_countLT?: InputMaybe; + output_countLTE?: InputMaybe; + output_countNEQ?: InputMaybe; + output_countNOTIN?: InputMaybe>>; + output_countNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_ProductionDeadlineOrder = { @@ -4126,33 +4126,33 @@ export type S0_Eternum_ProductionDeadlineOrder = { }; export enum S0_Eternum_ProductionDeadlineOrderField { - DeadlineTick = 'DEADLINE_TICK', - EntityId = 'ENTITY_ID' + DeadlineTick = "DEADLINE_TICK", + EntityId = "ENTITY_ID", } export type S0_Eternum_ProductionDeadlineWhereInput = { - deadline_tick?: InputMaybe; - deadline_tickEQ?: InputMaybe; - deadline_tickGT?: InputMaybe; - deadline_tickGTE?: InputMaybe; - deadline_tickIN?: InputMaybe>>; - deadline_tickLIKE?: InputMaybe; - deadline_tickLT?: InputMaybe; - deadline_tickLTE?: InputMaybe; - deadline_tickNEQ?: InputMaybe; - deadline_tickNOTIN?: InputMaybe>>; - deadline_tickNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; + deadline_tick?: InputMaybe; + deadline_tickEQ?: InputMaybe; + deadline_tickGT?: InputMaybe; + deadline_tickGTE?: InputMaybe; + deadline_tickIN?: InputMaybe>>; + deadline_tickLIKE?: InputMaybe; + deadline_tickLT?: InputMaybe; + deadline_tickLTE?: InputMaybe; + deadline_tickNEQ?: InputMaybe; + deadline_tickNOTIN?: InputMaybe>>; + deadline_tickNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_ProductionInputOrder = { @@ -4161,57 +4161,57 @@ export type S0_Eternum_ProductionInputOrder = { }; export enum S0_Eternum_ProductionInputOrderField { - Index = 'INDEX', - InputResourceAmount = 'INPUT_RESOURCE_AMOUNT', - InputResourceType = 'INPUT_RESOURCE_TYPE', - OutputResourceType = 'OUTPUT_RESOURCE_TYPE' + Index = "INDEX", + InputResourceAmount = "INPUT_RESOURCE_AMOUNT", + InputResourceType = "INPUT_RESOURCE_TYPE", + OutputResourceType = "OUTPUT_RESOURCE_TYPE", } export type S0_Eternum_ProductionInputWhereInput = { - index?: InputMaybe; - indexEQ?: InputMaybe; - indexGT?: InputMaybe; - indexGTE?: InputMaybe; - indexIN?: InputMaybe>>; - indexLIKE?: InputMaybe; - indexLT?: InputMaybe; - indexLTE?: InputMaybe; - indexNEQ?: InputMaybe; - indexNOTIN?: InputMaybe>>; - indexNOTLIKE?: InputMaybe; - input_resource_amount?: InputMaybe; - input_resource_amountEQ?: InputMaybe; - input_resource_amountGT?: InputMaybe; - input_resource_amountGTE?: InputMaybe; - input_resource_amountIN?: InputMaybe>>; - input_resource_amountLIKE?: InputMaybe; - input_resource_amountLT?: InputMaybe; - input_resource_amountLTE?: InputMaybe; - input_resource_amountNEQ?: InputMaybe; - input_resource_amountNOTIN?: InputMaybe>>; - input_resource_amountNOTLIKE?: InputMaybe; - input_resource_type?: InputMaybe; - input_resource_typeEQ?: InputMaybe; - input_resource_typeGT?: InputMaybe; - input_resource_typeGTE?: InputMaybe; - input_resource_typeIN?: InputMaybe>>; - input_resource_typeLIKE?: InputMaybe; - input_resource_typeLT?: InputMaybe; - input_resource_typeLTE?: InputMaybe; - input_resource_typeNEQ?: InputMaybe; - input_resource_typeNOTIN?: InputMaybe>>; - input_resource_typeNOTLIKE?: InputMaybe; - output_resource_type?: InputMaybe; - output_resource_typeEQ?: InputMaybe; - output_resource_typeGT?: InputMaybe; - output_resource_typeGTE?: InputMaybe; - output_resource_typeIN?: InputMaybe>>; - output_resource_typeLIKE?: InputMaybe; - output_resource_typeLT?: InputMaybe; - output_resource_typeLTE?: InputMaybe; - output_resource_typeNEQ?: InputMaybe; - output_resource_typeNOTIN?: InputMaybe>>; - output_resource_typeNOTLIKE?: InputMaybe; + index?: InputMaybe; + indexEQ?: InputMaybe; + indexGT?: InputMaybe; + indexGTE?: InputMaybe; + indexIN?: InputMaybe>>; + indexLIKE?: InputMaybe; + indexLT?: InputMaybe; + indexLTE?: InputMaybe; + indexNEQ?: InputMaybe; + indexNOTIN?: InputMaybe>>; + indexNOTLIKE?: InputMaybe; + input_resource_amount?: InputMaybe; + input_resource_amountEQ?: InputMaybe; + input_resource_amountGT?: InputMaybe; + input_resource_amountGTE?: InputMaybe; + input_resource_amountIN?: InputMaybe>>; + input_resource_amountLIKE?: InputMaybe; + input_resource_amountLT?: InputMaybe; + input_resource_amountLTE?: InputMaybe; + input_resource_amountNEQ?: InputMaybe; + input_resource_amountNOTIN?: InputMaybe>>; + input_resource_amountNOTLIKE?: InputMaybe; + input_resource_type?: InputMaybe; + input_resource_typeEQ?: InputMaybe; + input_resource_typeGT?: InputMaybe; + input_resource_typeGTE?: InputMaybe; + input_resource_typeIN?: InputMaybe>>; + input_resource_typeLIKE?: InputMaybe; + input_resource_typeLT?: InputMaybe; + input_resource_typeLTE?: InputMaybe; + input_resource_typeNEQ?: InputMaybe; + input_resource_typeNOTIN?: InputMaybe>>; + input_resource_typeNOTLIKE?: InputMaybe; + output_resource_type?: InputMaybe; + output_resource_typeEQ?: InputMaybe; + output_resource_typeGT?: InputMaybe; + output_resource_typeGTE?: InputMaybe; + output_resource_typeIN?: InputMaybe>>; + output_resource_typeLIKE?: InputMaybe; + output_resource_typeLT?: InputMaybe; + output_resource_typeLTE?: InputMaybe; + output_resource_typeNEQ?: InputMaybe; + output_resource_typeNOTIN?: InputMaybe>>; + output_resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_ProductionOrder = { @@ -4220,13 +4220,13 @@ export type S0_Eternum_ProductionOrder = { }; export enum S0_Eternum_ProductionOrderField { - BuildingCount = 'BUILDING_COUNT', - ConsumptionRate = 'CONSUMPTION_RATE', - EntityId = 'ENTITY_ID', - InputFinishTick = 'INPUT_FINISH_TICK', - LastUpdatedTick = 'LAST_UPDATED_TICK', - ProductionRate = 'PRODUCTION_RATE', - ResourceType = 'RESOURCE_TYPE' + BuildingCount = "BUILDING_COUNT", + ConsumptionRate = "CONSUMPTION_RATE", + EntityId = "ENTITY_ID", + InputFinishTick = "INPUT_FINISH_TICK", + LastUpdatedTick = "LAST_UPDATED_TICK", + ProductionRate = "PRODUCTION_RATE", + ResourceType = "RESOURCE_TYPE", } export type S0_Eternum_ProductionOutputOrder = { @@ -4235,125 +4235,125 @@ export type S0_Eternum_ProductionOutputOrder = { }; export enum S0_Eternum_ProductionOutputOrderField { - Index = 'INDEX', - InputResourceType = 'INPUT_RESOURCE_TYPE', - OutputResourceType = 'OUTPUT_RESOURCE_TYPE' + Index = "INDEX", + InputResourceType = "INPUT_RESOURCE_TYPE", + OutputResourceType = "OUTPUT_RESOURCE_TYPE", } export type S0_Eternum_ProductionOutputWhereInput = { - index?: InputMaybe; - indexEQ?: InputMaybe; - indexGT?: InputMaybe; - indexGTE?: InputMaybe; - indexIN?: InputMaybe>>; - indexLIKE?: InputMaybe; - indexLT?: InputMaybe; - indexLTE?: InputMaybe; - indexNEQ?: InputMaybe; - indexNOTIN?: InputMaybe>>; - indexNOTLIKE?: InputMaybe; - input_resource_type?: InputMaybe; - input_resource_typeEQ?: InputMaybe; - input_resource_typeGT?: InputMaybe; - input_resource_typeGTE?: InputMaybe; - input_resource_typeIN?: InputMaybe>>; - input_resource_typeLIKE?: InputMaybe; - input_resource_typeLT?: InputMaybe; - input_resource_typeLTE?: InputMaybe; - input_resource_typeNEQ?: InputMaybe; - input_resource_typeNOTIN?: InputMaybe>>; - input_resource_typeNOTLIKE?: InputMaybe; - output_resource_type?: InputMaybe; - output_resource_typeEQ?: InputMaybe; - output_resource_typeGT?: InputMaybe; - output_resource_typeGTE?: InputMaybe; - output_resource_typeIN?: InputMaybe>>; - output_resource_typeLIKE?: InputMaybe; - output_resource_typeLT?: InputMaybe; - output_resource_typeLTE?: InputMaybe; - output_resource_typeNEQ?: InputMaybe; - output_resource_typeNOTIN?: InputMaybe>>; - output_resource_typeNOTLIKE?: InputMaybe; + index?: InputMaybe; + indexEQ?: InputMaybe; + indexGT?: InputMaybe; + indexGTE?: InputMaybe; + indexIN?: InputMaybe>>; + indexLIKE?: InputMaybe; + indexLT?: InputMaybe; + indexLTE?: InputMaybe; + indexNEQ?: InputMaybe; + indexNOTIN?: InputMaybe>>; + indexNOTLIKE?: InputMaybe; + input_resource_type?: InputMaybe; + input_resource_typeEQ?: InputMaybe; + input_resource_typeGT?: InputMaybe; + input_resource_typeGTE?: InputMaybe; + input_resource_typeIN?: InputMaybe>>; + input_resource_typeLIKE?: InputMaybe; + input_resource_typeLT?: InputMaybe; + input_resource_typeLTE?: InputMaybe; + input_resource_typeNEQ?: InputMaybe; + input_resource_typeNOTIN?: InputMaybe>>; + input_resource_typeNOTLIKE?: InputMaybe; + output_resource_type?: InputMaybe; + output_resource_typeEQ?: InputMaybe; + output_resource_typeGT?: InputMaybe; + output_resource_typeGTE?: InputMaybe; + output_resource_typeIN?: InputMaybe>>; + output_resource_typeLIKE?: InputMaybe; + output_resource_typeLT?: InputMaybe; + output_resource_typeLTE?: InputMaybe; + output_resource_typeNEQ?: InputMaybe; + output_resource_typeNOTIN?: InputMaybe>>; + output_resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_ProductionWhereInput = { - building_count?: InputMaybe; - building_countEQ?: InputMaybe; - building_countGT?: InputMaybe; - building_countGTE?: InputMaybe; - building_countIN?: InputMaybe>>; - building_countLIKE?: InputMaybe; - building_countLT?: InputMaybe; - building_countLTE?: InputMaybe; - building_countNEQ?: InputMaybe; - building_countNOTIN?: InputMaybe>>; - building_countNOTLIKE?: InputMaybe; - consumption_rate?: InputMaybe; - consumption_rateEQ?: InputMaybe; - consumption_rateGT?: InputMaybe; - consumption_rateGTE?: InputMaybe; - consumption_rateIN?: InputMaybe>>; - consumption_rateLIKE?: InputMaybe; - consumption_rateLT?: InputMaybe; - consumption_rateLTE?: InputMaybe; - consumption_rateNEQ?: InputMaybe; - consumption_rateNOTIN?: InputMaybe>>; - consumption_rateNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - input_finish_tick?: InputMaybe; - input_finish_tickEQ?: InputMaybe; - input_finish_tickGT?: InputMaybe; - input_finish_tickGTE?: InputMaybe; - input_finish_tickIN?: InputMaybe>>; - input_finish_tickLIKE?: InputMaybe; - input_finish_tickLT?: InputMaybe; - input_finish_tickLTE?: InputMaybe; - input_finish_tickNEQ?: InputMaybe; - input_finish_tickNOTIN?: InputMaybe>>; - input_finish_tickNOTLIKE?: InputMaybe; - last_updated_tick?: InputMaybe; - last_updated_tickEQ?: InputMaybe; - last_updated_tickGT?: InputMaybe; - last_updated_tickGTE?: InputMaybe; - last_updated_tickIN?: InputMaybe>>; - last_updated_tickLIKE?: InputMaybe; - last_updated_tickLT?: InputMaybe; - last_updated_tickLTE?: InputMaybe; - last_updated_tickNEQ?: InputMaybe; - last_updated_tickNOTIN?: InputMaybe>>; - last_updated_tickNOTLIKE?: InputMaybe; - production_rate?: InputMaybe; - production_rateEQ?: InputMaybe; - production_rateGT?: InputMaybe; - production_rateGTE?: InputMaybe; - production_rateIN?: InputMaybe>>; - production_rateLIKE?: InputMaybe; - production_rateLT?: InputMaybe; - production_rateLTE?: InputMaybe; - production_rateNEQ?: InputMaybe; - production_rateNOTIN?: InputMaybe>>; - production_rateNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + building_count?: InputMaybe; + building_countEQ?: InputMaybe; + building_countGT?: InputMaybe; + building_countGTE?: InputMaybe; + building_countIN?: InputMaybe>>; + building_countLIKE?: InputMaybe; + building_countLT?: InputMaybe; + building_countLTE?: InputMaybe; + building_countNEQ?: InputMaybe; + building_countNOTIN?: InputMaybe>>; + building_countNOTLIKE?: InputMaybe; + consumption_rate?: InputMaybe; + consumption_rateEQ?: InputMaybe; + consumption_rateGT?: InputMaybe; + consumption_rateGTE?: InputMaybe; + consumption_rateIN?: InputMaybe>>; + consumption_rateLIKE?: InputMaybe; + consumption_rateLT?: InputMaybe; + consumption_rateLTE?: InputMaybe; + consumption_rateNEQ?: InputMaybe; + consumption_rateNOTIN?: InputMaybe>>; + consumption_rateNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + input_finish_tick?: InputMaybe; + input_finish_tickEQ?: InputMaybe; + input_finish_tickGT?: InputMaybe; + input_finish_tickGTE?: InputMaybe; + input_finish_tickIN?: InputMaybe>>; + input_finish_tickLIKE?: InputMaybe; + input_finish_tickLT?: InputMaybe; + input_finish_tickLTE?: InputMaybe; + input_finish_tickNEQ?: InputMaybe; + input_finish_tickNOTIN?: InputMaybe>>; + input_finish_tickNOTLIKE?: InputMaybe; + last_updated_tick?: InputMaybe; + last_updated_tickEQ?: InputMaybe; + last_updated_tickGT?: InputMaybe; + last_updated_tickGTE?: InputMaybe; + last_updated_tickIN?: InputMaybe>>; + last_updated_tickLIKE?: InputMaybe; + last_updated_tickLT?: InputMaybe; + last_updated_tickLTE?: InputMaybe; + last_updated_tickNEQ?: InputMaybe; + last_updated_tickNOTIN?: InputMaybe>>; + last_updated_tickNOTLIKE?: InputMaybe; + production_rate?: InputMaybe; + production_rateEQ?: InputMaybe; + production_rateGT?: InputMaybe; + production_rateGTE?: InputMaybe; + production_rateIN?: InputMaybe>>; + production_rateLIKE?: InputMaybe; + production_rateLT?: InputMaybe; + production_rateLTE?: InputMaybe; + production_rateNEQ?: InputMaybe; + production_rateNOTIN?: InputMaybe>>; + production_rateNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_ProgressOrder = { @@ -4362,45 +4362,45 @@ export type S0_Eternum_ProgressOrder = { }; export enum S0_Eternum_ProgressOrderField { - Amount = 'AMOUNT', - HyperstructureEntityId = 'HYPERSTRUCTURE_ENTITY_ID', - ResourceType = 'RESOURCE_TYPE' + Amount = "AMOUNT", + HyperstructureEntityId = "HYPERSTRUCTURE_ENTITY_ID", + ResourceType = "RESOURCE_TYPE", } export type S0_Eternum_ProgressWhereInput = { - amount?: InputMaybe; - amountEQ?: InputMaybe; - amountGT?: InputMaybe; - amountGTE?: InputMaybe; - amountIN?: InputMaybe>>; - amountLIKE?: InputMaybe; - amountLT?: InputMaybe; - amountLTE?: InputMaybe; - amountNEQ?: InputMaybe; - amountNOTIN?: InputMaybe>>; - amountNOTLIKE?: InputMaybe; - hyperstructure_entity_id?: InputMaybe; - hyperstructure_entity_idEQ?: InputMaybe; - hyperstructure_entity_idGT?: InputMaybe; - hyperstructure_entity_idGTE?: InputMaybe; - hyperstructure_entity_idIN?: InputMaybe>>; - hyperstructure_entity_idLIKE?: InputMaybe; - hyperstructure_entity_idLT?: InputMaybe; - hyperstructure_entity_idLTE?: InputMaybe; - hyperstructure_entity_idNEQ?: InputMaybe; - hyperstructure_entity_idNOTIN?: InputMaybe>>; - hyperstructure_entity_idNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + amount?: InputMaybe; + amountEQ?: InputMaybe; + amountGT?: InputMaybe; + amountGTE?: InputMaybe; + amountIN?: InputMaybe>>; + amountLIKE?: InputMaybe; + amountLT?: InputMaybe; + amountLTE?: InputMaybe; + amountNEQ?: InputMaybe; + amountNOTIN?: InputMaybe>>; + amountNOTLIKE?: InputMaybe; + hyperstructure_entity_id?: InputMaybe; + hyperstructure_entity_idEQ?: InputMaybe; + hyperstructure_entity_idGT?: InputMaybe; + hyperstructure_entity_idGTE?: InputMaybe; + hyperstructure_entity_idIN?: InputMaybe>>; + hyperstructure_entity_idLIKE?: InputMaybe; + hyperstructure_entity_idLT?: InputMaybe; + hyperstructure_entity_idLTE?: InputMaybe; + hyperstructure_entity_idNEQ?: InputMaybe; + hyperstructure_entity_idNOTIN?: InputMaybe>>; + hyperstructure_entity_idNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_ProtecteeOrder = { @@ -4409,33 +4409,33 @@ export type S0_Eternum_ProtecteeOrder = { }; export enum S0_Eternum_ProtecteeOrderField { - ArmyId = 'ARMY_ID', - ProtecteeId = 'PROTECTEE_ID' + ArmyId = "ARMY_ID", + ProtecteeId = "PROTECTEE_ID", } export type S0_Eternum_ProtecteeWhereInput = { - army_id?: InputMaybe; - army_idEQ?: InputMaybe; - army_idGT?: InputMaybe; - army_idGTE?: InputMaybe; - army_idIN?: InputMaybe>>; - army_idLIKE?: InputMaybe; - army_idLT?: InputMaybe; - army_idLTE?: InputMaybe; - army_idNEQ?: InputMaybe; - army_idNOTIN?: InputMaybe>>; - army_idNOTLIKE?: InputMaybe; - protectee_id?: InputMaybe; - protectee_idEQ?: InputMaybe; - protectee_idGT?: InputMaybe; - protectee_idGTE?: InputMaybe; - protectee_idIN?: InputMaybe>>; - protectee_idLIKE?: InputMaybe; - protectee_idLT?: InputMaybe; - protectee_idLTE?: InputMaybe; - protectee_idNEQ?: InputMaybe; - protectee_idNOTIN?: InputMaybe>>; - protectee_idNOTLIKE?: InputMaybe; + army_id?: InputMaybe; + army_idEQ?: InputMaybe; + army_idGT?: InputMaybe; + army_idGTE?: InputMaybe; + army_idIN?: InputMaybe>>; + army_idLIKE?: InputMaybe; + army_idLT?: InputMaybe; + army_idLTE?: InputMaybe; + army_idNEQ?: InputMaybe; + army_idNOTIN?: InputMaybe>>; + army_idNOTLIKE?: InputMaybe; + protectee_id?: InputMaybe; + protectee_idEQ?: InputMaybe; + protectee_idGT?: InputMaybe; + protectee_idGTE?: InputMaybe; + protectee_idIN?: InputMaybe>>; + protectee_idLIKE?: InputMaybe; + protectee_idLT?: InputMaybe; + protectee_idLTE?: InputMaybe; + protectee_idNEQ?: InputMaybe; + protectee_idNOTIN?: InputMaybe>>; + protectee_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_ProtectorOrder = { @@ -4444,33 +4444,33 @@ export type S0_Eternum_ProtectorOrder = { }; export enum S0_Eternum_ProtectorOrderField { - ArmyId = 'ARMY_ID', - EntityId = 'ENTITY_ID' + ArmyId = "ARMY_ID", + EntityId = "ENTITY_ID", } export type S0_Eternum_ProtectorWhereInput = { - army_id?: InputMaybe; - army_idEQ?: InputMaybe; - army_idGT?: InputMaybe; - army_idGTE?: InputMaybe; - army_idIN?: InputMaybe>>; - army_idLIKE?: InputMaybe; - army_idLT?: InputMaybe; - army_idLTE?: InputMaybe; - army_idNEQ?: InputMaybe; - army_idNOTIN?: InputMaybe>>; - army_idNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; + army_id?: InputMaybe; + army_idEQ?: InputMaybe; + army_idGT?: InputMaybe; + army_idGTE?: InputMaybe; + army_idIN?: InputMaybe>>; + army_idLIKE?: InputMaybe; + army_idLT?: InputMaybe; + army_idLTE?: InputMaybe; + army_idNEQ?: InputMaybe; + army_idNOTIN?: InputMaybe>>; + army_idNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_QuantityOrder = { @@ -4479,8 +4479,8 @@ export type S0_Eternum_QuantityOrder = { }; export enum S0_Eternum_QuantityOrderField { - EntityId = 'ENTITY_ID', - Value = 'VALUE' + EntityId = "ENTITY_ID", + Value = "VALUE", } export type S0_Eternum_QuantityTrackerOrder = { @@ -4489,58 +4489,58 @@ export type S0_Eternum_QuantityTrackerOrder = { }; export enum S0_Eternum_QuantityTrackerOrderField { - Count = 'COUNT', - EntityId = 'ENTITY_ID' + Count = "COUNT", + EntityId = "ENTITY_ID", } export type S0_Eternum_QuantityTrackerWhereInput = { - count?: InputMaybe; - countEQ?: InputMaybe; - countGT?: InputMaybe; - countGTE?: InputMaybe; - countIN?: InputMaybe>>; - countLIKE?: InputMaybe; - countLT?: InputMaybe; - countLTE?: InputMaybe; - countNEQ?: InputMaybe; - countNOTIN?: InputMaybe>>; - countNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; + count?: InputMaybe; + countEQ?: InputMaybe; + countGT?: InputMaybe; + countGTE?: InputMaybe; + countIN?: InputMaybe>>; + countLIKE?: InputMaybe; + countLT?: InputMaybe; + countLTE?: InputMaybe; + countNEQ?: InputMaybe; + countNOTIN?: InputMaybe>>; + countNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_QuantityWhereInput = { - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - value?: InputMaybe; - valueEQ?: InputMaybe; - valueGT?: InputMaybe; - valueGTE?: InputMaybe; - valueIN?: InputMaybe>>; - valueLIKE?: InputMaybe; - valueLT?: InputMaybe; - valueLTE?: InputMaybe; - valueNEQ?: InputMaybe; - valueNOTIN?: InputMaybe>>; - valueNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + value?: InputMaybe; + valueEQ?: InputMaybe; + valueGT?: InputMaybe; + valueGTE?: InputMaybe; + valueIN?: InputMaybe>>; + valueLIKE?: InputMaybe; + valueLT?: InputMaybe; + valueLTE?: InputMaybe; + valueNEQ?: InputMaybe; + valueNOTIN?: InputMaybe>>; + valueNOTLIKE?: InputMaybe; }; export type S0_Eternum_QuestBonusOrder = { @@ -4549,35 +4549,35 @@ export type S0_Eternum_QuestBonusOrder = { }; export enum S0_Eternum_QuestBonusOrderField { - Claimed = 'CLAIMED', - EntityId = 'ENTITY_ID', - ResourceType = 'RESOURCE_TYPE' + Claimed = "CLAIMED", + EntityId = "ENTITY_ID", + ResourceType = "RESOURCE_TYPE", } export type S0_Eternum_QuestBonusWhereInput = { - claimed?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + claimed?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_QuestConfigOrder = { @@ -4586,33 +4586,33 @@ export type S0_Eternum_QuestConfigOrder = { }; export enum S0_Eternum_QuestConfigOrderField { - ConfigId = 'CONFIG_ID', - ProductionMaterialMultiplier = 'PRODUCTION_MATERIAL_MULTIPLIER' + ConfigId = "CONFIG_ID", + ProductionMaterialMultiplier = "PRODUCTION_MATERIAL_MULTIPLIER", } export type S0_Eternum_QuestConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - production_material_multiplier?: InputMaybe; - production_material_multiplierEQ?: InputMaybe; - production_material_multiplierGT?: InputMaybe; - production_material_multiplierGTE?: InputMaybe; - production_material_multiplierIN?: InputMaybe>>; - production_material_multiplierLIKE?: InputMaybe; - production_material_multiplierLT?: InputMaybe; - production_material_multiplierLTE?: InputMaybe; - production_material_multiplierNEQ?: InputMaybe; - production_material_multiplierNOTIN?: InputMaybe>>; - production_material_multiplierNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + production_material_multiplier?: InputMaybe; + production_material_multiplierEQ?: InputMaybe; + production_material_multiplierGT?: InputMaybe; + production_material_multiplierGTE?: InputMaybe; + production_material_multiplierIN?: InputMaybe>>; + production_material_multiplierLIKE?: InputMaybe; + production_material_multiplierLT?: InputMaybe; + production_material_multiplierLTE?: InputMaybe; + production_material_multiplierNEQ?: InputMaybe; + production_material_multiplierNOTIN?: InputMaybe>>; + production_material_multiplierNOTLIKE?: InputMaybe; }; export type S0_Eternum_QuestOrder = { @@ -4621,9 +4621,9 @@ export type S0_Eternum_QuestOrder = { }; export enum S0_Eternum_QuestOrderField { - Completed = 'COMPLETED', - ConfigId = 'CONFIG_ID', - EntityId = 'ENTITY_ID' + Completed = "COMPLETED", + ConfigId = "CONFIG_ID", + EntityId = "ENTITY_ID", } export type S0_Eternum_QuestRewardConfigOrder = { @@ -4632,71 +4632,71 @@ export type S0_Eternum_QuestRewardConfigOrder = { }; export enum S0_Eternum_QuestRewardConfigOrderField { - DetachedResourceCount = 'DETACHED_RESOURCE_COUNT', - DetachedResourceId = 'DETACHED_RESOURCE_ID', - QuestId = 'QUEST_ID' + DetachedResourceCount = "DETACHED_RESOURCE_COUNT", + DetachedResourceId = "DETACHED_RESOURCE_ID", + QuestId = "QUEST_ID", } export type S0_Eternum_QuestRewardConfigWhereInput = { - detached_resource_count?: InputMaybe; - detached_resource_countEQ?: InputMaybe; - detached_resource_countGT?: InputMaybe; - detached_resource_countGTE?: InputMaybe; - detached_resource_countIN?: InputMaybe>>; - detached_resource_countLIKE?: InputMaybe; - detached_resource_countLT?: InputMaybe; - detached_resource_countLTE?: InputMaybe; - detached_resource_countNEQ?: InputMaybe; - detached_resource_countNOTIN?: InputMaybe>>; - detached_resource_countNOTLIKE?: InputMaybe; - detached_resource_id?: InputMaybe; - detached_resource_idEQ?: InputMaybe; - detached_resource_idGT?: InputMaybe; - detached_resource_idGTE?: InputMaybe; - detached_resource_idIN?: InputMaybe>>; - detached_resource_idLIKE?: InputMaybe; - detached_resource_idLT?: InputMaybe; - detached_resource_idLTE?: InputMaybe; - detached_resource_idNEQ?: InputMaybe; - detached_resource_idNOTIN?: InputMaybe>>; - detached_resource_idNOTLIKE?: InputMaybe; - quest_id?: InputMaybe; - quest_idEQ?: InputMaybe; - quest_idGT?: InputMaybe; - quest_idGTE?: InputMaybe; - quest_idIN?: InputMaybe>>; - quest_idLIKE?: InputMaybe; - quest_idLT?: InputMaybe; - quest_idLTE?: InputMaybe; - quest_idNEQ?: InputMaybe; - quest_idNOTIN?: InputMaybe>>; - quest_idNOTLIKE?: InputMaybe; + detached_resource_count?: InputMaybe; + detached_resource_countEQ?: InputMaybe; + detached_resource_countGT?: InputMaybe; + detached_resource_countGTE?: InputMaybe; + detached_resource_countIN?: InputMaybe>>; + detached_resource_countLIKE?: InputMaybe; + detached_resource_countLT?: InputMaybe; + detached_resource_countLTE?: InputMaybe; + detached_resource_countNEQ?: InputMaybe; + detached_resource_countNOTIN?: InputMaybe>>; + detached_resource_countNOTLIKE?: InputMaybe; + detached_resource_id?: InputMaybe; + detached_resource_idEQ?: InputMaybe; + detached_resource_idGT?: InputMaybe; + detached_resource_idGTE?: InputMaybe; + detached_resource_idIN?: InputMaybe>>; + detached_resource_idLIKE?: InputMaybe; + detached_resource_idLT?: InputMaybe; + detached_resource_idLTE?: InputMaybe; + detached_resource_idNEQ?: InputMaybe; + detached_resource_idNOTIN?: InputMaybe>>; + detached_resource_idNOTLIKE?: InputMaybe; + quest_id?: InputMaybe; + quest_idEQ?: InputMaybe; + quest_idGT?: InputMaybe; + quest_idGTE?: InputMaybe; + quest_idIN?: InputMaybe>>; + quest_idLIKE?: InputMaybe; + quest_idLT?: InputMaybe; + quest_idLTE?: InputMaybe; + quest_idNEQ?: InputMaybe; + quest_idNOTIN?: InputMaybe>>; + quest_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_QuestWhereInput = { - completed?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; + completed?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_RealmLevelConfigOrder = { @@ -4705,45 +4705,45 @@ export type S0_Eternum_RealmLevelConfigOrder = { }; export enum S0_Eternum_RealmLevelConfigOrderField { - Level = 'LEVEL', - RequiredResourcesId = 'REQUIRED_RESOURCES_ID', - RequiredResourceCount = 'REQUIRED_RESOURCE_COUNT' + Level = "LEVEL", + RequiredResourcesId = "REQUIRED_RESOURCES_ID", + RequiredResourceCount = "REQUIRED_RESOURCE_COUNT", } export type S0_Eternum_RealmLevelConfigWhereInput = { - level?: InputMaybe; - levelEQ?: InputMaybe; - levelGT?: InputMaybe; - levelGTE?: InputMaybe; - levelIN?: InputMaybe>>; - levelLIKE?: InputMaybe; - levelLT?: InputMaybe; - levelLTE?: InputMaybe; - levelNEQ?: InputMaybe; - levelNOTIN?: InputMaybe>>; - levelNOTLIKE?: InputMaybe; - required_resource_count?: InputMaybe; - required_resource_countEQ?: InputMaybe; - required_resource_countGT?: InputMaybe; - required_resource_countGTE?: InputMaybe; - required_resource_countIN?: InputMaybe>>; - required_resource_countLIKE?: InputMaybe; - required_resource_countLT?: InputMaybe; - required_resource_countLTE?: InputMaybe; - required_resource_countNEQ?: InputMaybe; - required_resource_countNOTIN?: InputMaybe>>; - required_resource_countNOTLIKE?: InputMaybe; - required_resources_id?: InputMaybe; - required_resources_idEQ?: InputMaybe; - required_resources_idGT?: InputMaybe; - required_resources_idGTE?: InputMaybe; - required_resources_idIN?: InputMaybe>>; - required_resources_idLIKE?: InputMaybe; - required_resources_idLT?: InputMaybe; - required_resources_idLTE?: InputMaybe; - required_resources_idNEQ?: InputMaybe; - required_resources_idNOTIN?: InputMaybe>>; - required_resources_idNOTLIKE?: InputMaybe; + level?: InputMaybe; + levelEQ?: InputMaybe; + levelGT?: InputMaybe; + levelGTE?: InputMaybe; + levelIN?: InputMaybe>>; + levelLIKE?: InputMaybe; + levelLT?: InputMaybe; + levelLTE?: InputMaybe; + levelNEQ?: InputMaybe; + levelNOTIN?: InputMaybe>>; + levelNOTLIKE?: InputMaybe; + required_resource_count?: InputMaybe; + required_resource_countEQ?: InputMaybe; + required_resource_countGT?: InputMaybe; + required_resource_countGTE?: InputMaybe; + required_resource_countIN?: InputMaybe>>; + required_resource_countLIKE?: InputMaybe; + required_resource_countLT?: InputMaybe; + required_resource_countLTE?: InputMaybe; + required_resource_countNEQ?: InputMaybe; + required_resource_countNOTIN?: InputMaybe>>; + required_resource_countNOTLIKE?: InputMaybe; + required_resources_id?: InputMaybe; + required_resources_idEQ?: InputMaybe; + required_resources_idGT?: InputMaybe; + required_resources_idGTE?: InputMaybe; + required_resources_idIN?: InputMaybe>>; + required_resources_idLIKE?: InputMaybe; + required_resources_idLT?: InputMaybe; + required_resources_idLTE?: InputMaybe; + required_resources_idNEQ?: InputMaybe; + required_resources_idNOTIN?: InputMaybe>>; + required_resources_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_RealmMaxLevelConfigOrder = { @@ -4752,33 +4752,33 @@ export type S0_Eternum_RealmMaxLevelConfigOrder = { }; export enum S0_Eternum_RealmMaxLevelConfigOrderField { - ConfigId = 'CONFIG_ID', - MaxLevel = 'MAX_LEVEL' + ConfigId = "CONFIG_ID", + MaxLevel = "MAX_LEVEL", } export type S0_Eternum_RealmMaxLevelConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - max_level?: InputMaybe; - max_levelEQ?: InputMaybe; - max_levelGT?: InputMaybe; - max_levelGTE?: InputMaybe; - max_levelIN?: InputMaybe>>; - max_levelLIKE?: InputMaybe; - max_levelLT?: InputMaybe; - max_levelLTE?: InputMaybe; - max_levelNEQ?: InputMaybe; - max_levelNOTIN?: InputMaybe>>; - max_levelNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + max_level?: InputMaybe; + max_levelEQ?: InputMaybe; + max_levelGT?: InputMaybe; + max_levelGTE?: InputMaybe; + max_levelIN?: InputMaybe>>; + max_levelLIKE?: InputMaybe; + max_levelLT?: InputMaybe; + max_levelLTE?: InputMaybe; + max_levelNEQ?: InputMaybe; + max_levelNOTIN?: InputMaybe>>; + max_levelNOTLIKE?: InputMaybe; }; export type S0_Eternum_RealmOrder = { @@ -4787,83 +4787,83 @@ export type S0_Eternum_RealmOrder = { }; export enum S0_Eternum_RealmOrderField { - EntityId = 'ENTITY_ID', - HasWonder = 'HAS_WONDER', - Level = 'LEVEL', - Order = 'ORDER', - ProducedResources = 'PRODUCED_RESOURCES', - RealmId = 'REALM_ID', - SettlerAddress = 'SETTLER_ADDRESS' + EntityId = "ENTITY_ID", + HasWonder = "HAS_WONDER", + Level = "LEVEL", + Order = "ORDER", + ProducedResources = "PRODUCED_RESOURCES", + RealmId = "REALM_ID", + SettlerAddress = "SETTLER_ADDRESS", } export type S0_Eternum_RealmWhereInput = { - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - has_wonder?: InputMaybe; - level?: InputMaybe; - levelEQ?: InputMaybe; - levelGT?: InputMaybe; - levelGTE?: InputMaybe; - levelIN?: InputMaybe>>; - levelLIKE?: InputMaybe; - levelLT?: InputMaybe; - levelLTE?: InputMaybe; - levelNEQ?: InputMaybe; - levelNOTIN?: InputMaybe>>; - levelNOTLIKE?: InputMaybe; - order?: InputMaybe; - orderEQ?: InputMaybe; - orderGT?: InputMaybe; - orderGTE?: InputMaybe; - orderIN?: InputMaybe>>; - orderLIKE?: InputMaybe; - orderLT?: InputMaybe; - orderLTE?: InputMaybe; - orderNEQ?: InputMaybe; - orderNOTIN?: InputMaybe>>; - orderNOTLIKE?: InputMaybe; - produced_resources?: InputMaybe; - produced_resourcesEQ?: InputMaybe; - produced_resourcesGT?: InputMaybe; - produced_resourcesGTE?: InputMaybe; - produced_resourcesIN?: InputMaybe>>; - produced_resourcesLIKE?: InputMaybe; - produced_resourcesLT?: InputMaybe; - produced_resourcesLTE?: InputMaybe; - produced_resourcesNEQ?: InputMaybe; - produced_resourcesNOTIN?: InputMaybe>>; - produced_resourcesNOTLIKE?: InputMaybe; - realm_id?: InputMaybe; - realm_idEQ?: InputMaybe; - realm_idGT?: InputMaybe; - realm_idGTE?: InputMaybe; - realm_idIN?: InputMaybe>>; - realm_idLIKE?: InputMaybe; - realm_idLT?: InputMaybe; - realm_idLTE?: InputMaybe; - realm_idNEQ?: InputMaybe; - realm_idNOTIN?: InputMaybe>>; - realm_idNOTLIKE?: InputMaybe; - settler_address?: InputMaybe; - settler_addressEQ?: InputMaybe; - settler_addressGT?: InputMaybe; - settler_addressGTE?: InputMaybe; - settler_addressIN?: InputMaybe>>; - settler_addressLIKE?: InputMaybe; - settler_addressLT?: InputMaybe; - settler_addressLTE?: InputMaybe; - settler_addressNEQ?: InputMaybe; - settler_addressNOTIN?: InputMaybe>>; - settler_addressNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + has_wonder?: InputMaybe; + level?: InputMaybe; + levelEQ?: InputMaybe; + levelGT?: InputMaybe; + levelGTE?: InputMaybe; + levelIN?: InputMaybe>>; + levelLIKE?: InputMaybe; + levelLT?: InputMaybe; + levelLTE?: InputMaybe; + levelNEQ?: InputMaybe; + levelNOTIN?: InputMaybe>>; + levelNOTLIKE?: InputMaybe; + order?: InputMaybe; + orderEQ?: InputMaybe; + orderGT?: InputMaybe; + orderGTE?: InputMaybe; + orderIN?: InputMaybe>>; + orderLIKE?: InputMaybe; + orderLT?: InputMaybe; + orderLTE?: InputMaybe; + orderNEQ?: InputMaybe; + orderNOTIN?: InputMaybe>>; + orderNOTLIKE?: InputMaybe; + produced_resources?: InputMaybe; + produced_resourcesEQ?: InputMaybe; + produced_resourcesGT?: InputMaybe; + produced_resourcesGTE?: InputMaybe; + produced_resourcesIN?: InputMaybe>>; + produced_resourcesLIKE?: InputMaybe; + produced_resourcesLT?: InputMaybe; + produced_resourcesLTE?: InputMaybe; + produced_resourcesNEQ?: InputMaybe; + produced_resourcesNOTIN?: InputMaybe>>; + produced_resourcesNOTLIKE?: InputMaybe; + realm_id?: InputMaybe; + realm_idEQ?: InputMaybe; + realm_idGT?: InputMaybe; + realm_idGTE?: InputMaybe; + realm_idIN?: InputMaybe>>; + realm_idLIKE?: InputMaybe; + realm_idLT?: InputMaybe; + realm_idLTE?: InputMaybe; + realm_idNEQ?: InputMaybe; + realm_idNOTIN?: InputMaybe>>; + realm_idNOTLIKE?: InputMaybe; + settler_address?: InputMaybe; + settler_addressEQ?: InputMaybe; + settler_addressGT?: InputMaybe; + settler_addressGTE?: InputMaybe; + settler_addressIN?: InputMaybe>>; + settler_addressLIKE?: InputMaybe; + settler_addressLT?: InputMaybe; + settler_addressLTE?: InputMaybe; + settler_addressNEQ?: InputMaybe; + settler_addressNOTIN?: InputMaybe>>; + settler_addressNOTLIKE?: InputMaybe; }; export type S0_Eternum_ResourceAllowanceOrder = { @@ -4872,57 +4872,57 @@ export type S0_Eternum_ResourceAllowanceOrder = { }; export enum S0_Eternum_ResourceAllowanceOrderField { - Amount = 'AMOUNT', - ApprovedEntityId = 'APPROVED_ENTITY_ID', - OwnerEntityId = 'OWNER_ENTITY_ID', - ResourceType = 'RESOURCE_TYPE' + Amount = "AMOUNT", + ApprovedEntityId = "APPROVED_ENTITY_ID", + OwnerEntityId = "OWNER_ENTITY_ID", + ResourceType = "RESOURCE_TYPE", } export type S0_Eternum_ResourceAllowanceWhereInput = { - amount?: InputMaybe; - amountEQ?: InputMaybe; - amountGT?: InputMaybe; - amountGTE?: InputMaybe; - amountIN?: InputMaybe>>; - amountLIKE?: InputMaybe; - amountLT?: InputMaybe; - amountLTE?: InputMaybe; - amountNEQ?: InputMaybe; - amountNOTIN?: InputMaybe>>; - amountNOTLIKE?: InputMaybe; - approved_entity_id?: InputMaybe; - approved_entity_idEQ?: InputMaybe; - approved_entity_idGT?: InputMaybe; - approved_entity_idGTE?: InputMaybe; - approved_entity_idIN?: InputMaybe>>; - approved_entity_idLIKE?: InputMaybe; - approved_entity_idLT?: InputMaybe; - approved_entity_idLTE?: InputMaybe; - approved_entity_idNEQ?: InputMaybe; - approved_entity_idNOTIN?: InputMaybe>>; - approved_entity_idNOTLIKE?: InputMaybe; - owner_entity_id?: InputMaybe; - owner_entity_idEQ?: InputMaybe; - owner_entity_idGT?: InputMaybe; - owner_entity_idGTE?: InputMaybe; - owner_entity_idIN?: InputMaybe>>; - owner_entity_idLIKE?: InputMaybe; - owner_entity_idLT?: InputMaybe; - owner_entity_idLTE?: InputMaybe; - owner_entity_idNEQ?: InputMaybe; - owner_entity_idNOTIN?: InputMaybe>>; - owner_entity_idNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + amount?: InputMaybe; + amountEQ?: InputMaybe; + amountGT?: InputMaybe; + amountGTE?: InputMaybe; + amountIN?: InputMaybe>>; + amountLIKE?: InputMaybe; + amountLT?: InputMaybe; + amountLTE?: InputMaybe; + amountNEQ?: InputMaybe; + amountNOTIN?: InputMaybe>>; + amountNOTLIKE?: InputMaybe; + approved_entity_id?: InputMaybe; + approved_entity_idEQ?: InputMaybe; + approved_entity_idGT?: InputMaybe; + approved_entity_idGTE?: InputMaybe; + approved_entity_idIN?: InputMaybe>>; + approved_entity_idLIKE?: InputMaybe; + approved_entity_idLT?: InputMaybe; + approved_entity_idLTE?: InputMaybe; + approved_entity_idNEQ?: InputMaybe; + approved_entity_idNOTIN?: InputMaybe>>; + approved_entity_idNOTLIKE?: InputMaybe; + owner_entity_id?: InputMaybe; + owner_entity_idEQ?: InputMaybe; + owner_entity_idGT?: InputMaybe; + owner_entity_idGTE?: InputMaybe; + owner_entity_idIN?: InputMaybe>>; + owner_entity_idLIKE?: InputMaybe; + owner_entity_idLT?: InputMaybe; + owner_entity_idLTE?: InputMaybe; + owner_entity_idNEQ?: InputMaybe; + owner_entity_idNOTIN?: InputMaybe>>; + owner_entity_idNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_ResourceBridgeConfigOrder = { @@ -4931,25 +4931,25 @@ export type S0_Eternum_ResourceBridgeConfigOrder = { }; export enum S0_Eternum_ResourceBridgeConfigOrderField { - ConfigId = 'CONFIG_ID', - DepositPaused = 'DEPOSIT_PAUSED', - WithdrawPaused = 'WITHDRAW_PAUSED' + ConfigId = "CONFIG_ID", + DepositPaused = "DEPOSIT_PAUSED", + WithdrawPaused = "WITHDRAW_PAUSED", } export type S0_Eternum_ResourceBridgeConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - deposit_paused?: InputMaybe; - withdraw_paused?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + deposit_paused?: InputMaybe; + withdraw_paused?: InputMaybe; }; export type S0_Eternum_ResourceBridgeFeeSplitConfigOrder = { @@ -4958,141 +4958,141 @@ export type S0_Eternum_ResourceBridgeFeeSplitConfigOrder = { }; export enum S0_Eternum_ResourceBridgeFeeSplitConfigOrderField { - ClientFeeOnDptPercent = 'CLIENT_FEE_ON_DPT_PERCENT', - ClientFeeOnWtdrPercent = 'CLIENT_FEE_ON_WTDR_PERCENT', - ConfigId = 'CONFIG_ID', - MaxBankFeeDptPercent = 'MAX_BANK_FEE_DPT_PERCENT', - MaxBankFeeWtdrPercent = 'MAX_BANK_FEE_WTDR_PERCENT', - SeasonPoolFeeOnDptPercent = 'SEASON_POOL_FEE_ON_DPT_PERCENT', - SeasonPoolFeeOnWtdrPercent = 'SEASON_POOL_FEE_ON_WTDR_PERCENT', - SeasonPoolFeeRecipient = 'SEASON_POOL_FEE_RECIPIENT', - VelordsFeeOnDptPercent = 'VELORDS_FEE_ON_DPT_PERCENT', - VelordsFeeOnWtdrPercent = 'VELORDS_FEE_ON_WTDR_PERCENT', - VelordsFeeRecipient = 'VELORDS_FEE_RECIPIENT' + ClientFeeOnDptPercent = "CLIENT_FEE_ON_DPT_PERCENT", + ClientFeeOnWtdrPercent = "CLIENT_FEE_ON_WTDR_PERCENT", + ConfigId = "CONFIG_ID", + MaxBankFeeDptPercent = "MAX_BANK_FEE_DPT_PERCENT", + MaxBankFeeWtdrPercent = "MAX_BANK_FEE_WTDR_PERCENT", + SeasonPoolFeeOnDptPercent = "SEASON_POOL_FEE_ON_DPT_PERCENT", + SeasonPoolFeeOnWtdrPercent = "SEASON_POOL_FEE_ON_WTDR_PERCENT", + SeasonPoolFeeRecipient = "SEASON_POOL_FEE_RECIPIENT", + VelordsFeeOnDptPercent = "VELORDS_FEE_ON_DPT_PERCENT", + VelordsFeeOnWtdrPercent = "VELORDS_FEE_ON_WTDR_PERCENT", + VelordsFeeRecipient = "VELORDS_FEE_RECIPIENT", } export type S0_Eternum_ResourceBridgeFeeSplitConfigWhereInput = { - client_fee_on_dpt_percent?: InputMaybe; - client_fee_on_dpt_percentEQ?: InputMaybe; - client_fee_on_dpt_percentGT?: InputMaybe; - client_fee_on_dpt_percentGTE?: InputMaybe; - client_fee_on_dpt_percentIN?: InputMaybe>>; - client_fee_on_dpt_percentLIKE?: InputMaybe; - client_fee_on_dpt_percentLT?: InputMaybe; - client_fee_on_dpt_percentLTE?: InputMaybe; - client_fee_on_dpt_percentNEQ?: InputMaybe; - client_fee_on_dpt_percentNOTIN?: InputMaybe>>; - client_fee_on_dpt_percentNOTLIKE?: InputMaybe; - client_fee_on_wtdr_percent?: InputMaybe; - client_fee_on_wtdr_percentEQ?: InputMaybe; - client_fee_on_wtdr_percentGT?: InputMaybe; - client_fee_on_wtdr_percentGTE?: InputMaybe; - client_fee_on_wtdr_percentIN?: InputMaybe>>; - client_fee_on_wtdr_percentLIKE?: InputMaybe; - client_fee_on_wtdr_percentLT?: InputMaybe; - client_fee_on_wtdr_percentLTE?: InputMaybe; - client_fee_on_wtdr_percentNEQ?: InputMaybe; - client_fee_on_wtdr_percentNOTIN?: InputMaybe>>; - client_fee_on_wtdr_percentNOTLIKE?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - max_bank_fee_dpt_percent?: InputMaybe; - max_bank_fee_dpt_percentEQ?: InputMaybe; - max_bank_fee_dpt_percentGT?: InputMaybe; - max_bank_fee_dpt_percentGTE?: InputMaybe; - max_bank_fee_dpt_percentIN?: InputMaybe>>; - max_bank_fee_dpt_percentLIKE?: InputMaybe; - max_bank_fee_dpt_percentLT?: InputMaybe; - max_bank_fee_dpt_percentLTE?: InputMaybe; - max_bank_fee_dpt_percentNEQ?: InputMaybe; - max_bank_fee_dpt_percentNOTIN?: InputMaybe>>; - max_bank_fee_dpt_percentNOTLIKE?: InputMaybe; - max_bank_fee_wtdr_percent?: InputMaybe; - max_bank_fee_wtdr_percentEQ?: InputMaybe; - max_bank_fee_wtdr_percentGT?: InputMaybe; - max_bank_fee_wtdr_percentGTE?: InputMaybe; - max_bank_fee_wtdr_percentIN?: InputMaybe>>; - max_bank_fee_wtdr_percentLIKE?: InputMaybe; - max_bank_fee_wtdr_percentLT?: InputMaybe; - max_bank_fee_wtdr_percentLTE?: InputMaybe; - max_bank_fee_wtdr_percentNEQ?: InputMaybe; - max_bank_fee_wtdr_percentNOTIN?: InputMaybe>>; - max_bank_fee_wtdr_percentNOTLIKE?: InputMaybe; - season_pool_fee_on_dpt_percent?: InputMaybe; - season_pool_fee_on_dpt_percentEQ?: InputMaybe; - season_pool_fee_on_dpt_percentGT?: InputMaybe; - season_pool_fee_on_dpt_percentGTE?: InputMaybe; - season_pool_fee_on_dpt_percentIN?: InputMaybe>>; - season_pool_fee_on_dpt_percentLIKE?: InputMaybe; - season_pool_fee_on_dpt_percentLT?: InputMaybe; - season_pool_fee_on_dpt_percentLTE?: InputMaybe; - season_pool_fee_on_dpt_percentNEQ?: InputMaybe; - season_pool_fee_on_dpt_percentNOTIN?: InputMaybe>>; - season_pool_fee_on_dpt_percentNOTLIKE?: InputMaybe; - season_pool_fee_on_wtdr_percent?: InputMaybe; - season_pool_fee_on_wtdr_percentEQ?: InputMaybe; - season_pool_fee_on_wtdr_percentGT?: InputMaybe; - season_pool_fee_on_wtdr_percentGTE?: InputMaybe; - season_pool_fee_on_wtdr_percentIN?: InputMaybe>>; - season_pool_fee_on_wtdr_percentLIKE?: InputMaybe; - season_pool_fee_on_wtdr_percentLT?: InputMaybe; - season_pool_fee_on_wtdr_percentLTE?: InputMaybe; - season_pool_fee_on_wtdr_percentNEQ?: InputMaybe; - season_pool_fee_on_wtdr_percentNOTIN?: InputMaybe>>; - season_pool_fee_on_wtdr_percentNOTLIKE?: InputMaybe; - season_pool_fee_recipient?: InputMaybe; - season_pool_fee_recipientEQ?: InputMaybe; - season_pool_fee_recipientGT?: InputMaybe; - season_pool_fee_recipientGTE?: InputMaybe; - season_pool_fee_recipientIN?: InputMaybe>>; - season_pool_fee_recipientLIKE?: InputMaybe; - season_pool_fee_recipientLT?: InputMaybe; - season_pool_fee_recipientLTE?: InputMaybe; - season_pool_fee_recipientNEQ?: InputMaybe; - season_pool_fee_recipientNOTIN?: InputMaybe>>; - season_pool_fee_recipientNOTLIKE?: InputMaybe; - velords_fee_on_dpt_percent?: InputMaybe; - velords_fee_on_dpt_percentEQ?: InputMaybe; - velords_fee_on_dpt_percentGT?: InputMaybe; - velords_fee_on_dpt_percentGTE?: InputMaybe; - velords_fee_on_dpt_percentIN?: InputMaybe>>; - velords_fee_on_dpt_percentLIKE?: InputMaybe; - velords_fee_on_dpt_percentLT?: InputMaybe; - velords_fee_on_dpt_percentLTE?: InputMaybe; - velords_fee_on_dpt_percentNEQ?: InputMaybe; - velords_fee_on_dpt_percentNOTIN?: InputMaybe>>; - velords_fee_on_dpt_percentNOTLIKE?: InputMaybe; - velords_fee_on_wtdr_percent?: InputMaybe; - velords_fee_on_wtdr_percentEQ?: InputMaybe; - velords_fee_on_wtdr_percentGT?: InputMaybe; - velords_fee_on_wtdr_percentGTE?: InputMaybe; - velords_fee_on_wtdr_percentIN?: InputMaybe>>; - velords_fee_on_wtdr_percentLIKE?: InputMaybe; - velords_fee_on_wtdr_percentLT?: InputMaybe; - velords_fee_on_wtdr_percentLTE?: InputMaybe; - velords_fee_on_wtdr_percentNEQ?: InputMaybe; - velords_fee_on_wtdr_percentNOTIN?: InputMaybe>>; - velords_fee_on_wtdr_percentNOTLIKE?: InputMaybe; - velords_fee_recipient?: InputMaybe; - velords_fee_recipientEQ?: InputMaybe; - velords_fee_recipientGT?: InputMaybe; - velords_fee_recipientGTE?: InputMaybe; - velords_fee_recipientIN?: InputMaybe>>; - velords_fee_recipientLIKE?: InputMaybe; - velords_fee_recipientLT?: InputMaybe; - velords_fee_recipientLTE?: InputMaybe; - velords_fee_recipientNEQ?: InputMaybe; - velords_fee_recipientNOTIN?: InputMaybe>>; - velords_fee_recipientNOTLIKE?: InputMaybe; + client_fee_on_dpt_percent?: InputMaybe; + client_fee_on_dpt_percentEQ?: InputMaybe; + client_fee_on_dpt_percentGT?: InputMaybe; + client_fee_on_dpt_percentGTE?: InputMaybe; + client_fee_on_dpt_percentIN?: InputMaybe>>; + client_fee_on_dpt_percentLIKE?: InputMaybe; + client_fee_on_dpt_percentLT?: InputMaybe; + client_fee_on_dpt_percentLTE?: InputMaybe; + client_fee_on_dpt_percentNEQ?: InputMaybe; + client_fee_on_dpt_percentNOTIN?: InputMaybe>>; + client_fee_on_dpt_percentNOTLIKE?: InputMaybe; + client_fee_on_wtdr_percent?: InputMaybe; + client_fee_on_wtdr_percentEQ?: InputMaybe; + client_fee_on_wtdr_percentGT?: InputMaybe; + client_fee_on_wtdr_percentGTE?: InputMaybe; + client_fee_on_wtdr_percentIN?: InputMaybe>>; + client_fee_on_wtdr_percentLIKE?: InputMaybe; + client_fee_on_wtdr_percentLT?: InputMaybe; + client_fee_on_wtdr_percentLTE?: InputMaybe; + client_fee_on_wtdr_percentNEQ?: InputMaybe; + client_fee_on_wtdr_percentNOTIN?: InputMaybe>>; + client_fee_on_wtdr_percentNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + max_bank_fee_dpt_percent?: InputMaybe; + max_bank_fee_dpt_percentEQ?: InputMaybe; + max_bank_fee_dpt_percentGT?: InputMaybe; + max_bank_fee_dpt_percentGTE?: InputMaybe; + max_bank_fee_dpt_percentIN?: InputMaybe>>; + max_bank_fee_dpt_percentLIKE?: InputMaybe; + max_bank_fee_dpt_percentLT?: InputMaybe; + max_bank_fee_dpt_percentLTE?: InputMaybe; + max_bank_fee_dpt_percentNEQ?: InputMaybe; + max_bank_fee_dpt_percentNOTIN?: InputMaybe>>; + max_bank_fee_dpt_percentNOTLIKE?: InputMaybe; + max_bank_fee_wtdr_percent?: InputMaybe; + max_bank_fee_wtdr_percentEQ?: InputMaybe; + max_bank_fee_wtdr_percentGT?: InputMaybe; + max_bank_fee_wtdr_percentGTE?: InputMaybe; + max_bank_fee_wtdr_percentIN?: InputMaybe>>; + max_bank_fee_wtdr_percentLIKE?: InputMaybe; + max_bank_fee_wtdr_percentLT?: InputMaybe; + max_bank_fee_wtdr_percentLTE?: InputMaybe; + max_bank_fee_wtdr_percentNEQ?: InputMaybe; + max_bank_fee_wtdr_percentNOTIN?: InputMaybe>>; + max_bank_fee_wtdr_percentNOTLIKE?: InputMaybe; + season_pool_fee_on_dpt_percent?: InputMaybe; + season_pool_fee_on_dpt_percentEQ?: InputMaybe; + season_pool_fee_on_dpt_percentGT?: InputMaybe; + season_pool_fee_on_dpt_percentGTE?: InputMaybe; + season_pool_fee_on_dpt_percentIN?: InputMaybe>>; + season_pool_fee_on_dpt_percentLIKE?: InputMaybe; + season_pool_fee_on_dpt_percentLT?: InputMaybe; + season_pool_fee_on_dpt_percentLTE?: InputMaybe; + season_pool_fee_on_dpt_percentNEQ?: InputMaybe; + season_pool_fee_on_dpt_percentNOTIN?: InputMaybe>>; + season_pool_fee_on_dpt_percentNOTLIKE?: InputMaybe; + season_pool_fee_on_wtdr_percent?: InputMaybe; + season_pool_fee_on_wtdr_percentEQ?: InputMaybe; + season_pool_fee_on_wtdr_percentGT?: InputMaybe; + season_pool_fee_on_wtdr_percentGTE?: InputMaybe; + season_pool_fee_on_wtdr_percentIN?: InputMaybe>>; + season_pool_fee_on_wtdr_percentLIKE?: InputMaybe; + season_pool_fee_on_wtdr_percentLT?: InputMaybe; + season_pool_fee_on_wtdr_percentLTE?: InputMaybe; + season_pool_fee_on_wtdr_percentNEQ?: InputMaybe; + season_pool_fee_on_wtdr_percentNOTIN?: InputMaybe>>; + season_pool_fee_on_wtdr_percentNOTLIKE?: InputMaybe; + season_pool_fee_recipient?: InputMaybe; + season_pool_fee_recipientEQ?: InputMaybe; + season_pool_fee_recipientGT?: InputMaybe; + season_pool_fee_recipientGTE?: InputMaybe; + season_pool_fee_recipientIN?: InputMaybe>>; + season_pool_fee_recipientLIKE?: InputMaybe; + season_pool_fee_recipientLT?: InputMaybe; + season_pool_fee_recipientLTE?: InputMaybe; + season_pool_fee_recipientNEQ?: InputMaybe; + season_pool_fee_recipientNOTIN?: InputMaybe>>; + season_pool_fee_recipientNOTLIKE?: InputMaybe; + velords_fee_on_dpt_percent?: InputMaybe; + velords_fee_on_dpt_percentEQ?: InputMaybe; + velords_fee_on_dpt_percentGT?: InputMaybe; + velords_fee_on_dpt_percentGTE?: InputMaybe; + velords_fee_on_dpt_percentIN?: InputMaybe>>; + velords_fee_on_dpt_percentLIKE?: InputMaybe; + velords_fee_on_dpt_percentLT?: InputMaybe; + velords_fee_on_dpt_percentLTE?: InputMaybe; + velords_fee_on_dpt_percentNEQ?: InputMaybe; + velords_fee_on_dpt_percentNOTIN?: InputMaybe>>; + velords_fee_on_dpt_percentNOTLIKE?: InputMaybe; + velords_fee_on_wtdr_percent?: InputMaybe; + velords_fee_on_wtdr_percentEQ?: InputMaybe; + velords_fee_on_wtdr_percentGT?: InputMaybe; + velords_fee_on_wtdr_percentGTE?: InputMaybe; + velords_fee_on_wtdr_percentIN?: InputMaybe>>; + velords_fee_on_wtdr_percentLIKE?: InputMaybe; + velords_fee_on_wtdr_percentLT?: InputMaybe; + velords_fee_on_wtdr_percentLTE?: InputMaybe; + velords_fee_on_wtdr_percentNEQ?: InputMaybe; + velords_fee_on_wtdr_percentNOTIN?: InputMaybe>>; + velords_fee_on_wtdr_percentNOTLIKE?: InputMaybe; + velords_fee_recipient?: InputMaybe; + velords_fee_recipientEQ?: InputMaybe; + velords_fee_recipientGT?: InputMaybe; + velords_fee_recipientGTE?: InputMaybe; + velords_fee_recipientIN?: InputMaybe>>; + velords_fee_recipientLIKE?: InputMaybe; + velords_fee_recipientLT?: InputMaybe; + velords_fee_recipientLTE?: InputMaybe; + velords_fee_recipientNEQ?: InputMaybe; + velords_fee_recipientNOTIN?: InputMaybe>>; + velords_fee_recipientNOTLIKE?: InputMaybe; }; export type S0_Eternum_ResourceBridgeWhitelistConfigOrder = { @@ -5101,33 +5101,33 @@ export type S0_Eternum_ResourceBridgeWhitelistConfigOrder = { }; export enum S0_Eternum_ResourceBridgeWhitelistConfigOrderField { - ResourceType = 'RESOURCE_TYPE', - Token = 'TOKEN' + ResourceType = "RESOURCE_TYPE", + Token = "TOKEN", } export type S0_Eternum_ResourceBridgeWhitelistConfigWhereInput = { - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; - token?: InputMaybe; - tokenEQ?: InputMaybe; - tokenGT?: InputMaybe; - tokenGTE?: InputMaybe; - tokenIN?: InputMaybe>>; - tokenLIKE?: InputMaybe; - tokenLT?: InputMaybe; - tokenLTE?: InputMaybe; - tokenNEQ?: InputMaybe; - tokenNOTIN?: InputMaybe>>; - tokenNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; + token?: InputMaybe; + tokenEQ?: InputMaybe; + tokenGT?: InputMaybe; + tokenGTE?: InputMaybe; + tokenIN?: InputMaybe>>; + tokenLIKE?: InputMaybe; + tokenLT?: InputMaybe; + tokenLTE?: InputMaybe; + tokenNEQ?: InputMaybe; + tokenNOTIN?: InputMaybe>>; + tokenNOTLIKE?: InputMaybe; }; export type S0_Eternum_ResourceCostOrder = { @@ -5136,57 +5136,57 @@ export type S0_Eternum_ResourceCostOrder = { }; export enum S0_Eternum_ResourceCostOrderField { - Amount = 'AMOUNT', - EntityId = 'ENTITY_ID', - Index = 'INDEX', - ResourceType = 'RESOURCE_TYPE' + Amount = "AMOUNT", + EntityId = "ENTITY_ID", + Index = "INDEX", + ResourceType = "RESOURCE_TYPE", } export type S0_Eternum_ResourceCostWhereInput = { - amount?: InputMaybe; - amountEQ?: InputMaybe; - amountGT?: InputMaybe; - amountGTE?: InputMaybe; - amountIN?: InputMaybe>>; - amountLIKE?: InputMaybe; - amountLT?: InputMaybe; - amountLTE?: InputMaybe; - amountNEQ?: InputMaybe; - amountNOTIN?: InputMaybe>>; - amountNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - index?: InputMaybe; - indexEQ?: InputMaybe; - indexGT?: InputMaybe; - indexGTE?: InputMaybe; - indexIN?: InputMaybe>>; - indexLIKE?: InputMaybe; - indexLT?: InputMaybe; - indexLTE?: InputMaybe; - indexNEQ?: InputMaybe; - indexNOTIN?: InputMaybe>>; - indexNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + amount?: InputMaybe; + amountEQ?: InputMaybe; + amountGT?: InputMaybe; + amountGTE?: InputMaybe; + amountIN?: InputMaybe>>; + amountLIKE?: InputMaybe; + amountLT?: InputMaybe; + amountLTE?: InputMaybe; + amountNEQ?: InputMaybe; + amountNOTIN?: InputMaybe>>; + amountNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + index?: InputMaybe; + indexEQ?: InputMaybe; + indexGT?: InputMaybe; + indexGTE?: InputMaybe; + indexIN?: InputMaybe>>; + indexLIKE?: InputMaybe; + indexLT?: InputMaybe; + indexLTE?: InputMaybe; + indexNEQ?: InputMaybe; + indexNOTIN?: InputMaybe>>; + indexNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_ResourceOrder = { @@ -5195,9 +5195,9 @@ export type S0_Eternum_ResourceOrder = { }; export enum S0_Eternum_ResourceOrderField { - Balance = 'BALANCE', - EntityId = 'ENTITY_ID', - ResourceType = 'RESOURCE_TYPE' + Balance = "BALANCE", + EntityId = "ENTITY_ID", + ResourceType = "RESOURCE_TYPE", } export type S0_Eternum_ResourceTransferLockOrder = { @@ -5206,81 +5206,81 @@ export type S0_Eternum_ResourceTransferLockOrder = { }; export enum S0_Eternum_ResourceTransferLockOrderField { - EntityId = 'ENTITY_ID', - ReleaseAt = 'RELEASE_AT', - StartAt = 'START_AT' + EntityId = "ENTITY_ID", + ReleaseAt = "RELEASE_AT", + StartAt = "START_AT", } export type S0_Eternum_ResourceTransferLockWhereInput = { - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - release_at?: InputMaybe; - release_atEQ?: InputMaybe; - release_atGT?: InputMaybe; - release_atGTE?: InputMaybe; - release_atIN?: InputMaybe>>; - release_atLIKE?: InputMaybe; - release_atLT?: InputMaybe; - release_atLTE?: InputMaybe; - release_atNEQ?: InputMaybe; - release_atNOTIN?: InputMaybe>>; - release_atNOTLIKE?: InputMaybe; - start_at?: InputMaybe; - start_atEQ?: InputMaybe; - start_atGT?: InputMaybe; - start_atGTE?: InputMaybe; - start_atIN?: InputMaybe>>; - start_atLIKE?: InputMaybe; - start_atLT?: InputMaybe; - start_atLTE?: InputMaybe; - start_atNEQ?: InputMaybe; - start_atNOTIN?: InputMaybe>>; - start_atNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + release_at?: InputMaybe; + release_atEQ?: InputMaybe; + release_atGT?: InputMaybe; + release_atGTE?: InputMaybe; + release_atIN?: InputMaybe>>; + release_atLIKE?: InputMaybe; + release_atLT?: InputMaybe; + release_atLTE?: InputMaybe; + release_atNEQ?: InputMaybe; + release_atNOTIN?: InputMaybe>>; + release_atNOTLIKE?: InputMaybe; + start_at?: InputMaybe; + start_atEQ?: InputMaybe; + start_atGT?: InputMaybe; + start_atGTE?: InputMaybe; + start_atIN?: InputMaybe>>; + start_atLIKE?: InputMaybe; + start_atLT?: InputMaybe; + start_atLTE?: InputMaybe; + start_atNEQ?: InputMaybe; + start_atNOTIN?: InputMaybe>>; + start_atNOTLIKE?: InputMaybe; }; export type S0_Eternum_ResourceWhereInput = { - balance?: InputMaybe; - balanceEQ?: InputMaybe; - balanceGT?: InputMaybe; - balanceGTE?: InputMaybe; - balanceIN?: InputMaybe>>; - balanceLIKE?: InputMaybe; - balanceLT?: InputMaybe; - balanceLTE?: InputMaybe; - balanceNEQ?: InputMaybe; - balanceNOTIN?: InputMaybe>>; - balanceNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; + balance?: InputMaybe; + balanceEQ?: InputMaybe; + balanceGT?: InputMaybe; + balanceGTE?: InputMaybe; + balanceIN?: InputMaybe>>; + balanceLIKE?: InputMaybe; + balanceLT?: InputMaybe; + balanceLTE?: InputMaybe; + balanceNEQ?: InputMaybe; + balanceNOTIN?: InputMaybe>>; + balanceNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_SeasonAddressesConfigOrder = { @@ -5289,57 +5289,57 @@ export type S0_Eternum_SeasonAddressesConfigOrder = { }; export enum S0_Eternum_SeasonAddressesConfigOrderField { - ConfigId = 'CONFIG_ID', - LordsAddress = 'LORDS_ADDRESS', - RealmsAddress = 'REALMS_ADDRESS', - SeasonPassAddress = 'SEASON_PASS_ADDRESS' + ConfigId = "CONFIG_ID", + LordsAddress = "LORDS_ADDRESS", + RealmsAddress = "REALMS_ADDRESS", + SeasonPassAddress = "SEASON_PASS_ADDRESS", } export type S0_Eternum_SeasonAddressesConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - lords_address?: InputMaybe; - lords_addressEQ?: InputMaybe; - lords_addressGT?: InputMaybe; - lords_addressGTE?: InputMaybe; - lords_addressIN?: InputMaybe>>; - lords_addressLIKE?: InputMaybe; - lords_addressLT?: InputMaybe; - lords_addressLTE?: InputMaybe; - lords_addressNEQ?: InputMaybe; - lords_addressNOTIN?: InputMaybe>>; - lords_addressNOTLIKE?: InputMaybe; - realms_address?: InputMaybe; - realms_addressEQ?: InputMaybe; - realms_addressGT?: InputMaybe; - realms_addressGTE?: InputMaybe; - realms_addressIN?: InputMaybe>>; - realms_addressLIKE?: InputMaybe; - realms_addressLT?: InputMaybe; - realms_addressLTE?: InputMaybe; - realms_addressNEQ?: InputMaybe; - realms_addressNOTIN?: InputMaybe>>; - realms_addressNOTLIKE?: InputMaybe; - season_pass_address?: InputMaybe; - season_pass_addressEQ?: InputMaybe; - season_pass_addressGT?: InputMaybe; - season_pass_addressGTE?: InputMaybe; - season_pass_addressIN?: InputMaybe>>; - season_pass_addressLIKE?: InputMaybe; - season_pass_addressLT?: InputMaybe; - season_pass_addressLTE?: InputMaybe; - season_pass_addressNEQ?: InputMaybe; - season_pass_addressNOTIN?: InputMaybe>>; - season_pass_addressNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + lords_address?: InputMaybe; + lords_addressEQ?: InputMaybe; + lords_addressGT?: InputMaybe; + lords_addressGTE?: InputMaybe; + lords_addressIN?: InputMaybe>>; + lords_addressLIKE?: InputMaybe; + lords_addressLT?: InputMaybe; + lords_addressLTE?: InputMaybe; + lords_addressNEQ?: InputMaybe; + lords_addressNOTIN?: InputMaybe>>; + lords_addressNOTLIKE?: InputMaybe; + realms_address?: InputMaybe; + realms_addressEQ?: InputMaybe; + realms_addressGT?: InputMaybe; + realms_addressGTE?: InputMaybe; + realms_addressIN?: InputMaybe>>; + realms_addressLIKE?: InputMaybe; + realms_addressLT?: InputMaybe; + realms_addressLTE?: InputMaybe; + realms_addressNEQ?: InputMaybe; + realms_addressNOTIN?: InputMaybe>>; + realms_addressNOTLIKE?: InputMaybe; + season_pass_address?: InputMaybe; + season_pass_addressEQ?: InputMaybe; + season_pass_addressGT?: InputMaybe; + season_pass_addressGTE?: InputMaybe; + season_pass_addressIN?: InputMaybe>>; + season_pass_addressLIKE?: InputMaybe; + season_pass_addressLT?: InputMaybe; + season_pass_addressLTE?: InputMaybe; + season_pass_addressNEQ?: InputMaybe; + season_pass_addressNOTIN?: InputMaybe>>; + season_pass_addressNOTLIKE?: InputMaybe; }; export type S0_Eternum_SeasonBridgeConfigOrder = { @@ -5348,33 +5348,33 @@ export type S0_Eternum_SeasonBridgeConfigOrder = { }; export enum S0_Eternum_SeasonBridgeConfigOrderField { - CloseAfterEndSeconds = 'CLOSE_AFTER_END_SECONDS', - ConfigId = 'CONFIG_ID' + CloseAfterEndSeconds = "CLOSE_AFTER_END_SECONDS", + ConfigId = "CONFIG_ID", } export type S0_Eternum_SeasonBridgeConfigWhereInput = { - close_after_end_seconds?: InputMaybe; - close_after_end_secondsEQ?: InputMaybe; - close_after_end_secondsGT?: InputMaybe; - close_after_end_secondsGTE?: InputMaybe; - close_after_end_secondsIN?: InputMaybe>>; - close_after_end_secondsLIKE?: InputMaybe; - close_after_end_secondsLT?: InputMaybe; - close_after_end_secondsLTE?: InputMaybe; - close_after_end_secondsNEQ?: InputMaybe; - close_after_end_secondsNOTIN?: InputMaybe>>; - close_after_end_secondsNOTLIKE?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; + close_after_end_seconds?: InputMaybe; + close_after_end_secondsEQ?: InputMaybe; + close_after_end_secondsGT?: InputMaybe; + close_after_end_secondsGTE?: InputMaybe; + close_after_end_secondsIN?: InputMaybe>>; + close_after_end_secondsLIKE?: InputMaybe; + close_after_end_secondsLT?: InputMaybe; + close_after_end_secondsLTE?: InputMaybe; + close_after_end_secondsNEQ?: InputMaybe; + close_after_end_secondsNOTIN?: InputMaybe>>; + close_after_end_secondsNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_SeasonOrder = { @@ -5383,47 +5383,47 @@ export type S0_Eternum_SeasonOrder = { }; export enum S0_Eternum_SeasonOrderField { - ConfigId = 'CONFIG_ID', - EndedAt = 'ENDED_AT', - IsOver = 'IS_OVER', - StartAt = 'START_AT' + ConfigId = "CONFIG_ID", + EndedAt = "ENDED_AT", + IsOver = "IS_OVER", + StartAt = "START_AT", } export type S0_Eternum_SeasonWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - ended_at?: InputMaybe; - ended_atEQ?: InputMaybe; - ended_atGT?: InputMaybe; - ended_atGTE?: InputMaybe; - ended_atIN?: InputMaybe>>; - ended_atLIKE?: InputMaybe; - ended_atLT?: InputMaybe; - ended_atLTE?: InputMaybe; - ended_atNEQ?: InputMaybe; - ended_atNOTIN?: InputMaybe>>; - ended_atNOTLIKE?: InputMaybe; - is_over?: InputMaybe; - start_at?: InputMaybe; - start_atEQ?: InputMaybe; - start_atGT?: InputMaybe; - start_atGTE?: InputMaybe; - start_atIN?: InputMaybe>>; - start_atLIKE?: InputMaybe; - start_atLT?: InputMaybe; - start_atLTE?: InputMaybe; - start_atNEQ?: InputMaybe; - start_atNOTIN?: InputMaybe>>; - start_atNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + ended_at?: InputMaybe; + ended_atEQ?: InputMaybe; + ended_atGT?: InputMaybe; + ended_atGTE?: InputMaybe; + ended_atIN?: InputMaybe>>; + ended_atLIKE?: InputMaybe; + ended_atLT?: InputMaybe; + ended_atLTE?: InputMaybe; + ended_atNEQ?: InputMaybe; + ended_atNOTIN?: InputMaybe>>; + ended_atNOTLIKE?: InputMaybe; + is_over?: InputMaybe; + start_at?: InputMaybe; + start_atEQ?: InputMaybe; + start_atGT?: InputMaybe; + start_atGTE?: InputMaybe; + start_atIN?: InputMaybe>>; + start_atLIKE?: InputMaybe; + start_atLT?: InputMaybe; + start_atLTE?: InputMaybe; + start_atNEQ?: InputMaybe; + start_atNOTIN?: InputMaybe>>; + start_atNOTLIKE?: InputMaybe; }; export type S0_Eternum_SettleRealmDataOrder = { @@ -5432,191 +5432,191 @@ export type S0_Eternum_SettleRealmDataOrder = { }; export enum S0_Eternum_SettleRealmDataOrderField { - Cities = 'CITIES', - EntityId = 'ENTITY_ID', - EventId = 'EVENT_ID', - Harbors = 'HARBORS', - Id = 'ID', - Order = 'ORDER', - OwnerAddress = 'OWNER_ADDRESS', - OwnerName = 'OWNER_NAME', - ProducedResources = 'PRODUCED_RESOURCES', - RealmName = 'REALM_NAME', - Regions = 'REGIONS', - Rivers = 'RIVERS', - Timestamp = 'TIMESTAMP', - Wonder = 'WONDER', - X = 'X', - Y = 'Y' + Cities = "CITIES", + EntityId = "ENTITY_ID", + EventId = "EVENT_ID", + Harbors = "HARBORS", + Id = "ID", + Order = "ORDER", + OwnerAddress = "OWNER_ADDRESS", + OwnerName = "OWNER_NAME", + ProducedResources = "PRODUCED_RESOURCES", + RealmName = "REALM_NAME", + Regions = "REGIONS", + Rivers = "RIVERS", + Timestamp = "TIMESTAMP", + Wonder = "WONDER", + X = "X", + Y = "Y", } export type S0_Eternum_SettleRealmDataWhereInput = { - cities?: InputMaybe; - citiesEQ?: InputMaybe; - citiesGT?: InputMaybe; - citiesGTE?: InputMaybe; - citiesIN?: InputMaybe>>; - citiesLIKE?: InputMaybe; - citiesLT?: InputMaybe; - citiesLTE?: InputMaybe; - citiesNEQ?: InputMaybe; - citiesNOTIN?: InputMaybe>>; - citiesNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - event_id?: InputMaybe; - harbors?: InputMaybe; - harborsEQ?: InputMaybe; - harborsGT?: InputMaybe; - harborsGTE?: InputMaybe; - harborsIN?: InputMaybe>>; - harborsLIKE?: InputMaybe; - harborsLT?: InputMaybe; - harborsLTE?: InputMaybe; - harborsNEQ?: InputMaybe; - harborsNOTIN?: InputMaybe>>; - harborsNOTLIKE?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - order?: InputMaybe; - orderEQ?: InputMaybe; - orderGT?: InputMaybe; - orderGTE?: InputMaybe; - orderIN?: InputMaybe>>; - orderLIKE?: InputMaybe; - orderLT?: InputMaybe; - orderLTE?: InputMaybe; - orderNEQ?: InputMaybe; - orderNOTIN?: InputMaybe>>; - orderNOTLIKE?: InputMaybe; - owner_address?: InputMaybe; - owner_addressEQ?: InputMaybe; - owner_addressGT?: InputMaybe; - owner_addressGTE?: InputMaybe; - owner_addressIN?: InputMaybe>>; - owner_addressLIKE?: InputMaybe; - owner_addressLT?: InputMaybe; - owner_addressLTE?: InputMaybe; - owner_addressNEQ?: InputMaybe; - owner_addressNOTIN?: InputMaybe>>; - owner_addressNOTLIKE?: InputMaybe; - owner_name?: InputMaybe; - owner_nameEQ?: InputMaybe; - owner_nameGT?: InputMaybe; - owner_nameGTE?: InputMaybe; - owner_nameIN?: InputMaybe>>; - owner_nameLIKE?: InputMaybe; - owner_nameLT?: InputMaybe; - owner_nameLTE?: InputMaybe; - owner_nameNEQ?: InputMaybe; - owner_nameNOTIN?: InputMaybe>>; - owner_nameNOTLIKE?: InputMaybe; - produced_resources?: InputMaybe; - produced_resourcesEQ?: InputMaybe; - produced_resourcesGT?: InputMaybe; - produced_resourcesGTE?: InputMaybe; - produced_resourcesIN?: InputMaybe>>; - produced_resourcesLIKE?: InputMaybe; - produced_resourcesLT?: InputMaybe; - produced_resourcesLTE?: InputMaybe; - produced_resourcesNEQ?: InputMaybe; - produced_resourcesNOTIN?: InputMaybe>>; - produced_resourcesNOTLIKE?: InputMaybe; - realm_name?: InputMaybe; - realm_nameEQ?: InputMaybe; - realm_nameGT?: InputMaybe; - realm_nameGTE?: InputMaybe; - realm_nameIN?: InputMaybe>>; - realm_nameLIKE?: InputMaybe; - realm_nameLT?: InputMaybe; - realm_nameLTE?: InputMaybe; - realm_nameNEQ?: InputMaybe; - realm_nameNOTIN?: InputMaybe>>; - realm_nameNOTLIKE?: InputMaybe; - regions?: InputMaybe; - regionsEQ?: InputMaybe; - regionsGT?: InputMaybe; - regionsGTE?: InputMaybe; - regionsIN?: InputMaybe>>; - regionsLIKE?: InputMaybe; - regionsLT?: InputMaybe; - regionsLTE?: InputMaybe; - regionsNEQ?: InputMaybe; - regionsNOTIN?: InputMaybe>>; - regionsNOTLIKE?: InputMaybe; - rivers?: InputMaybe; - riversEQ?: InputMaybe; - riversGT?: InputMaybe; - riversGTE?: InputMaybe; - riversIN?: InputMaybe>>; - riversLIKE?: InputMaybe; - riversLT?: InputMaybe; - riversLTE?: InputMaybe; - riversNEQ?: InputMaybe; - riversNOTIN?: InputMaybe>>; - riversNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - wonder?: InputMaybe; - wonderEQ?: InputMaybe; - wonderGT?: InputMaybe; - wonderGTE?: InputMaybe; - wonderIN?: InputMaybe>>; - wonderLIKE?: InputMaybe; - wonderLT?: InputMaybe; - wonderLTE?: InputMaybe; - wonderNEQ?: InputMaybe; - wonderNOTIN?: InputMaybe>>; - wonderNOTLIKE?: InputMaybe; - x?: InputMaybe; - xEQ?: InputMaybe; - xGT?: InputMaybe; - xGTE?: InputMaybe; - xIN?: InputMaybe>>; - xLIKE?: InputMaybe; - xLT?: InputMaybe; - xLTE?: InputMaybe; - xNEQ?: InputMaybe; - xNOTIN?: InputMaybe>>; - xNOTLIKE?: InputMaybe; - y?: InputMaybe; - yEQ?: InputMaybe; - yGT?: InputMaybe; - yGTE?: InputMaybe; - yIN?: InputMaybe>>; - yLIKE?: InputMaybe; - yLT?: InputMaybe; - yLTE?: InputMaybe; - yNEQ?: InputMaybe; - yNOTIN?: InputMaybe>>; - yNOTLIKE?: InputMaybe; + cities?: InputMaybe; + citiesEQ?: InputMaybe; + citiesGT?: InputMaybe; + citiesGTE?: InputMaybe; + citiesIN?: InputMaybe>>; + citiesLIKE?: InputMaybe; + citiesLT?: InputMaybe; + citiesLTE?: InputMaybe; + citiesNEQ?: InputMaybe; + citiesNOTIN?: InputMaybe>>; + citiesNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + event_id?: InputMaybe; + harbors?: InputMaybe; + harborsEQ?: InputMaybe; + harborsGT?: InputMaybe; + harborsGTE?: InputMaybe; + harborsIN?: InputMaybe>>; + harborsLIKE?: InputMaybe; + harborsLT?: InputMaybe; + harborsLTE?: InputMaybe; + harborsNEQ?: InputMaybe; + harborsNOTIN?: InputMaybe>>; + harborsNOTLIKE?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + order?: InputMaybe; + orderEQ?: InputMaybe; + orderGT?: InputMaybe; + orderGTE?: InputMaybe; + orderIN?: InputMaybe>>; + orderLIKE?: InputMaybe; + orderLT?: InputMaybe; + orderLTE?: InputMaybe; + orderNEQ?: InputMaybe; + orderNOTIN?: InputMaybe>>; + orderNOTLIKE?: InputMaybe; + owner_address?: InputMaybe; + owner_addressEQ?: InputMaybe; + owner_addressGT?: InputMaybe; + owner_addressGTE?: InputMaybe; + owner_addressIN?: InputMaybe>>; + owner_addressLIKE?: InputMaybe; + owner_addressLT?: InputMaybe; + owner_addressLTE?: InputMaybe; + owner_addressNEQ?: InputMaybe; + owner_addressNOTIN?: InputMaybe>>; + owner_addressNOTLIKE?: InputMaybe; + owner_name?: InputMaybe; + owner_nameEQ?: InputMaybe; + owner_nameGT?: InputMaybe; + owner_nameGTE?: InputMaybe; + owner_nameIN?: InputMaybe>>; + owner_nameLIKE?: InputMaybe; + owner_nameLT?: InputMaybe; + owner_nameLTE?: InputMaybe; + owner_nameNEQ?: InputMaybe; + owner_nameNOTIN?: InputMaybe>>; + owner_nameNOTLIKE?: InputMaybe; + produced_resources?: InputMaybe; + produced_resourcesEQ?: InputMaybe; + produced_resourcesGT?: InputMaybe; + produced_resourcesGTE?: InputMaybe; + produced_resourcesIN?: InputMaybe>>; + produced_resourcesLIKE?: InputMaybe; + produced_resourcesLT?: InputMaybe; + produced_resourcesLTE?: InputMaybe; + produced_resourcesNEQ?: InputMaybe; + produced_resourcesNOTIN?: InputMaybe>>; + produced_resourcesNOTLIKE?: InputMaybe; + realm_name?: InputMaybe; + realm_nameEQ?: InputMaybe; + realm_nameGT?: InputMaybe; + realm_nameGTE?: InputMaybe; + realm_nameIN?: InputMaybe>>; + realm_nameLIKE?: InputMaybe; + realm_nameLT?: InputMaybe; + realm_nameLTE?: InputMaybe; + realm_nameNEQ?: InputMaybe; + realm_nameNOTIN?: InputMaybe>>; + realm_nameNOTLIKE?: InputMaybe; + regions?: InputMaybe; + regionsEQ?: InputMaybe; + regionsGT?: InputMaybe; + regionsGTE?: InputMaybe; + regionsIN?: InputMaybe>>; + regionsLIKE?: InputMaybe; + regionsLT?: InputMaybe; + regionsLTE?: InputMaybe; + regionsNEQ?: InputMaybe; + regionsNOTIN?: InputMaybe>>; + regionsNOTLIKE?: InputMaybe; + rivers?: InputMaybe; + riversEQ?: InputMaybe; + riversGT?: InputMaybe; + riversGTE?: InputMaybe; + riversIN?: InputMaybe>>; + riversLIKE?: InputMaybe; + riversLT?: InputMaybe; + riversLTE?: InputMaybe; + riversNEQ?: InputMaybe; + riversNOTIN?: InputMaybe>>; + riversNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + wonder?: InputMaybe; + wonderEQ?: InputMaybe; + wonderGT?: InputMaybe; + wonderGTE?: InputMaybe; + wonderIN?: InputMaybe>>; + wonderLIKE?: InputMaybe; + wonderLT?: InputMaybe; + wonderLTE?: InputMaybe; + wonderNEQ?: InputMaybe; + wonderNOTIN?: InputMaybe>>; + wonderNOTLIKE?: InputMaybe; + x?: InputMaybe; + xEQ?: InputMaybe; + xGT?: InputMaybe; + xGTE?: InputMaybe; + xIN?: InputMaybe>>; + xLIKE?: InputMaybe; + xLT?: InputMaybe; + xLTE?: InputMaybe; + xNEQ?: InputMaybe; + xNOTIN?: InputMaybe>>; + xNOTLIKE?: InputMaybe; + y?: InputMaybe; + yEQ?: InputMaybe; + yGT?: InputMaybe; + yGTE?: InputMaybe; + yIN?: InputMaybe>>; + yLIKE?: InputMaybe; + yLT?: InputMaybe; + yLTE?: InputMaybe; + yNEQ?: InputMaybe; + yNOTIN?: InputMaybe>>; + yNOTLIKE?: InputMaybe; }; export type S0_Eternum_SettlementConfigOrder = { @@ -5625,105 +5625,105 @@ export type S0_Eternum_SettlementConfigOrder = { }; export enum S0_Eternum_SettlementConfigOrderField { - BaseDistance = 'BASE_DISTANCE', - Center = 'CENTER', - ConfigId = 'CONFIG_ID', - CurrentLayer = 'CURRENT_LAYER', - CurrentPointOnSide = 'CURRENT_POINT_ON_SIDE', - CurrentSide = 'CURRENT_SIDE', - MinFirstLayerDistance = 'MIN_FIRST_LAYER_DISTANCE', - PointsPlaced = 'POINTS_PLACED' + BaseDistance = "BASE_DISTANCE", + Center = "CENTER", + ConfigId = "CONFIG_ID", + CurrentLayer = "CURRENT_LAYER", + CurrentPointOnSide = "CURRENT_POINT_ON_SIDE", + CurrentSide = "CURRENT_SIDE", + MinFirstLayerDistance = "MIN_FIRST_LAYER_DISTANCE", + PointsPlaced = "POINTS_PLACED", } export type S0_Eternum_SettlementConfigWhereInput = { - base_distance?: InputMaybe; - base_distanceEQ?: InputMaybe; - base_distanceGT?: InputMaybe; - base_distanceGTE?: InputMaybe; - base_distanceIN?: InputMaybe>>; - base_distanceLIKE?: InputMaybe; - base_distanceLT?: InputMaybe; - base_distanceLTE?: InputMaybe; - base_distanceNEQ?: InputMaybe; - base_distanceNOTIN?: InputMaybe>>; - base_distanceNOTLIKE?: InputMaybe; - center?: InputMaybe; - centerEQ?: InputMaybe; - centerGT?: InputMaybe; - centerGTE?: InputMaybe; - centerIN?: InputMaybe>>; - centerLIKE?: InputMaybe; - centerLT?: InputMaybe; - centerLTE?: InputMaybe; - centerNEQ?: InputMaybe; - centerNOTIN?: InputMaybe>>; - centerNOTLIKE?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - current_layer?: InputMaybe; - current_layerEQ?: InputMaybe; - current_layerGT?: InputMaybe; - current_layerGTE?: InputMaybe; - current_layerIN?: InputMaybe>>; - current_layerLIKE?: InputMaybe; - current_layerLT?: InputMaybe; - current_layerLTE?: InputMaybe; - current_layerNEQ?: InputMaybe; - current_layerNOTIN?: InputMaybe>>; - current_layerNOTLIKE?: InputMaybe; - current_point_on_side?: InputMaybe; - current_point_on_sideEQ?: InputMaybe; - current_point_on_sideGT?: InputMaybe; - current_point_on_sideGTE?: InputMaybe; - current_point_on_sideIN?: InputMaybe>>; - current_point_on_sideLIKE?: InputMaybe; - current_point_on_sideLT?: InputMaybe; - current_point_on_sideLTE?: InputMaybe; - current_point_on_sideNEQ?: InputMaybe; - current_point_on_sideNOTIN?: InputMaybe>>; - current_point_on_sideNOTLIKE?: InputMaybe; - current_side?: InputMaybe; - current_sideEQ?: InputMaybe; - current_sideGT?: InputMaybe; - current_sideGTE?: InputMaybe; - current_sideIN?: InputMaybe>>; - current_sideLIKE?: InputMaybe; - current_sideLT?: InputMaybe; - current_sideLTE?: InputMaybe; - current_sideNEQ?: InputMaybe; - current_sideNOTIN?: InputMaybe>>; - current_sideNOTLIKE?: InputMaybe; - min_first_layer_distance?: InputMaybe; - min_first_layer_distanceEQ?: InputMaybe; - min_first_layer_distanceGT?: InputMaybe; - min_first_layer_distanceGTE?: InputMaybe; - min_first_layer_distanceIN?: InputMaybe>>; - min_first_layer_distanceLIKE?: InputMaybe; - min_first_layer_distanceLT?: InputMaybe; - min_first_layer_distanceLTE?: InputMaybe; - min_first_layer_distanceNEQ?: InputMaybe; - min_first_layer_distanceNOTIN?: InputMaybe>>; - min_first_layer_distanceNOTLIKE?: InputMaybe; - points_placed?: InputMaybe; - points_placedEQ?: InputMaybe; - points_placedGT?: InputMaybe; - points_placedGTE?: InputMaybe; - points_placedIN?: InputMaybe>>; - points_placedLIKE?: InputMaybe; - points_placedLT?: InputMaybe; - points_placedLTE?: InputMaybe; - points_placedNEQ?: InputMaybe; - points_placedNOTIN?: InputMaybe>>; - points_placedNOTLIKE?: InputMaybe; + base_distance?: InputMaybe; + base_distanceEQ?: InputMaybe; + base_distanceGT?: InputMaybe; + base_distanceGTE?: InputMaybe; + base_distanceIN?: InputMaybe>>; + base_distanceLIKE?: InputMaybe; + base_distanceLT?: InputMaybe; + base_distanceLTE?: InputMaybe; + base_distanceNEQ?: InputMaybe; + base_distanceNOTIN?: InputMaybe>>; + base_distanceNOTLIKE?: InputMaybe; + center?: InputMaybe; + centerEQ?: InputMaybe; + centerGT?: InputMaybe; + centerGTE?: InputMaybe; + centerIN?: InputMaybe>>; + centerLIKE?: InputMaybe; + centerLT?: InputMaybe; + centerLTE?: InputMaybe; + centerNEQ?: InputMaybe; + centerNOTIN?: InputMaybe>>; + centerNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + current_layer?: InputMaybe; + current_layerEQ?: InputMaybe; + current_layerGT?: InputMaybe; + current_layerGTE?: InputMaybe; + current_layerIN?: InputMaybe>>; + current_layerLIKE?: InputMaybe; + current_layerLT?: InputMaybe; + current_layerLTE?: InputMaybe; + current_layerNEQ?: InputMaybe; + current_layerNOTIN?: InputMaybe>>; + current_layerNOTLIKE?: InputMaybe; + current_point_on_side?: InputMaybe; + current_point_on_sideEQ?: InputMaybe; + current_point_on_sideGT?: InputMaybe; + current_point_on_sideGTE?: InputMaybe; + current_point_on_sideIN?: InputMaybe>>; + current_point_on_sideLIKE?: InputMaybe; + current_point_on_sideLT?: InputMaybe; + current_point_on_sideLTE?: InputMaybe; + current_point_on_sideNEQ?: InputMaybe; + current_point_on_sideNOTIN?: InputMaybe>>; + current_point_on_sideNOTLIKE?: InputMaybe; + current_side?: InputMaybe; + current_sideEQ?: InputMaybe; + current_sideGT?: InputMaybe; + current_sideGTE?: InputMaybe; + current_sideIN?: InputMaybe>>; + current_sideLIKE?: InputMaybe; + current_sideLT?: InputMaybe; + current_sideLTE?: InputMaybe; + current_sideNEQ?: InputMaybe; + current_sideNOTIN?: InputMaybe>>; + current_sideNOTLIKE?: InputMaybe; + min_first_layer_distance?: InputMaybe; + min_first_layer_distanceEQ?: InputMaybe; + min_first_layer_distanceGT?: InputMaybe; + min_first_layer_distanceGTE?: InputMaybe; + min_first_layer_distanceIN?: InputMaybe>>; + min_first_layer_distanceLIKE?: InputMaybe; + min_first_layer_distanceLT?: InputMaybe; + min_first_layer_distanceLTE?: InputMaybe; + min_first_layer_distanceNEQ?: InputMaybe; + min_first_layer_distanceNOTIN?: InputMaybe>>; + min_first_layer_distanceNOTLIKE?: InputMaybe; + points_placed?: InputMaybe; + points_placedEQ?: InputMaybe; + points_placedGT?: InputMaybe; + points_placedGTE?: InputMaybe; + points_placedIN?: InputMaybe>>; + points_placedLIKE?: InputMaybe; + points_placedLT?: InputMaybe; + points_placedLTE?: InputMaybe; + points_placedNEQ?: InputMaybe; + points_placedNOTIN?: InputMaybe>>; + points_placedNOTLIKE?: InputMaybe; }; export type S0_Eternum_SpeedConfigOrder = { @@ -5732,57 +5732,57 @@ export type S0_Eternum_SpeedConfigOrder = { }; export enum S0_Eternum_SpeedConfigOrderField { - ConfigId = 'CONFIG_ID', - EntityType = 'ENTITY_TYPE', - SecPerKm = 'SEC_PER_KM', - SpeedConfigId = 'SPEED_CONFIG_ID' + ConfigId = "CONFIG_ID", + EntityType = "ENTITY_TYPE", + SecPerKm = "SEC_PER_KM", + SpeedConfigId = "SPEED_CONFIG_ID", } export type S0_Eternum_SpeedConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - entity_type?: InputMaybe; - entity_typeEQ?: InputMaybe; - entity_typeGT?: InputMaybe; - entity_typeGTE?: InputMaybe; - entity_typeIN?: InputMaybe>>; - entity_typeLIKE?: InputMaybe; - entity_typeLT?: InputMaybe; - entity_typeLTE?: InputMaybe; - entity_typeNEQ?: InputMaybe; - entity_typeNOTIN?: InputMaybe>>; - entity_typeNOTLIKE?: InputMaybe; - sec_per_km?: InputMaybe; - sec_per_kmEQ?: InputMaybe; - sec_per_kmGT?: InputMaybe; - sec_per_kmGTE?: InputMaybe; - sec_per_kmIN?: InputMaybe>>; - sec_per_kmLIKE?: InputMaybe; - sec_per_kmLT?: InputMaybe; - sec_per_kmLTE?: InputMaybe; - sec_per_kmNEQ?: InputMaybe; - sec_per_kmNOTIN?: InputMaybe>>; - sec_per_kmNOTLIKE?: InputMaybe; - speed_config_id?: InputMaybe; - speed_config_idEQ?: InputMaybe; - speed_config_idGT?: InputMaybe; - speed_config_idGTE?: InputMaybe; - speed_config_idIN?: InputMaybe>>; - speed_config_idLIKE?: InputMaybe; - speed_config_idLT?: InputMaybe; - speed_config_idLTE?: InputMaybe; - speed_config_idNEQ?: InputMaybe; - speed_config_idNOTIN?: InputMaybe>>; - speed_config_idNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + entity_type?: InputMaybe; + entity_typeEQ?: InputMaybe; + entity_typeGT?: InputMaybe; + entity_typeGTE?: InputMaybe; + entity_typeIN?: InputMaybe>>; + entity_typeLIKE?: InputMaybe; + entity_typeLT?: InputMaybe; + entity_typeLTE?: InputMaybe; + entity_typeNEQ?: InputMaybe; + entity_typeNOTIN?: InputMaybe>>; + entity_typeNOTLIKE?: InputMaybe; + sec_per_km?: InputMaybe; + sec_per_kmEQ?: InputMaybe; + sec_per_kmGT?: InputMaybe; + sec_per_kmGTE?: InputMaybe; + sec_per_kmIN?: InputMaybe>>; + sec_per_kmLIKE?: InputMaybe; + sec_per_kmLT?: InputMaybe; + sec_per_kmLTE?: InputMaybe; + sec_per_kmNEQ?: InputMaybe; + sec_per_kmNOTIN?: InputMaybe>>; + sec_per_kmNOTLIKE?: InputMaybe; + speed_config_id?: InputMaybe; + speed_config_idEQ?: InputMaybe; + speed_config_idGT?: InputMaybe; + speed_config_idGTE?: InputMaybe; + speed_config_idIN?: InputMaybe>>; + speed_config_idLIKE?: InputMaybe; + speed_config_idLT?: InputMaybe; + speed_config_idLTE?: InputMaybe; + speed_config_idNEQ?: InputMaybe; + speed_config_idNOTIN?: InputMaybe>>; + speed_config_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_StaminaConfigOrder = { @@ -5791,45 +5791,45 @@ export type S0_Eternum_StaminaConfigOrder = { }; export enum S0_Eternum_StaminaConfigOrderField { - ConfigId = 'CONFIG_ID', - MaxStamina = 'MAX_STAMINA', - UnitType = 'UNIT_TYPE' + ConfigId = "CONFIG_ID", + MaxStamina = "MAX_STAMINA", + UnitType = "UNIT_TYPE", } export type S0_Eternum_StaminaConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - max_stamina?: InputMaybe; - max_staminaEQ?: InputMaybe; - max_staminaGT?: InputMaybe; - max_staminaGTE?: InputMaybe; - max_staminaIN?: InputMaybe>>; - max_staminaLIKE?: InputMaybe; - max_staminaLT?: InputMaybe; - max_staminaLTE?: InputMaybe; - max_staminaNEQ?: InputMaybe; - max_staminaNOTIN?: InputMaybe>>; - max_staminaNOTLIKE?: InputMaybe; - unit_type?: InputMaybe; - unit_typeEQ?: InputMaybe; - unit_typeGT?: InputMaybe; - unit_typeGTE?: InputMaybe; - unit_typeIN?: InputMaybe>>; - unit_typeLIKE?: InputMaybe; - unit_typeLT?: InputMaybe; - unit_typeLTE?: InputMaybe; - unit_typeNEQ?: InputMaybe; - unit_typeNOTIN?: InputMaybe>>; - unit_typeNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + max_stamina?: InputMaybe; + max_staminaEQ?: InputMaybe; + max_staminaGT?: InputMaybe; + max_staminaGTE?: InputMaybe; + max_staminaIN?: InputMaybe>>; + max_staminaLIKE?: InputMaybe; + max_staminaLT?: InputMaybe; + max_staminaLTE?: InputMaybe; + max_staminaNEQ?: InputMaybe; + max_staminaNOTIN?: InputMaybe>>; + max_staminaNOTLIKE?: InputMaybe; + unit_type?: InputMaybe; + unit_typeEQ?: InputMaybe; + unit_typeGT?: InputMaybe; + unit_typeGTE?: InputMaybe; + unit_typeIN?: InputMaybe>>; + unit_typeLIKE?: InputMaybe; + unit_typeLT?: InputMaybe; + unit_typeLTE?: InputMaybe; + unit_typeNEQ?: InputMaybe; + unit_typeNOTIN?: InputMaybe>>; + unit_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_StaminaOrder = { @@ -5838,9 +5838,9 @@ export type S0_Eternum_StaminaOrder = { }; export enum S0_Eternum_StaminaOrderField { - Amount = 'AMOUNT', - EntityId = 'ENTITY_ID', - LastRefillTick = 'LAST_REFILL_TICK' + Amount = "AMOUNT", + EntityId = "ENTITY_ID", + LastRefillTick = "LAST_REFILL_TICK", } export type S0_Eternum_StaminaRefillConfigOrder = { @@ -5849,81 +5849,81 @@ export type S0_Eternum_StaminaRefillConfigOrder = { }; export enum S0_Eternum_StaminaRefillConfigOrderField { - AmountPerTick = 'AMOUNT_PER_TICK', - ConfigId = 'CONFIG_ID', - StartBoostTickCount = 'START_BOOST_TICK_COUNT' + AmountPerTick = "AMOUNT_PER_TICK", + ConfigId = "CONFIG_ID", + StartBoostTickCount = "START_BOOST_TICK_COUNT", } export type S0_Eternum_StaminaRefillConfigWhereInput = { - amount_per_tick?: InputMaybe; - amount_per_tickEQ?: InputMaybe; - amount_per_tickGT?: InputMaybe; - amount_per_tickGTE?: InputMaybe; - amount_per_tickIN?: InputMaybe>>; - amount_per_tickLIKE?: InputMaybe; - amount_per_tickLT?: InputMaybe; - amount_per_tickLTE?: InputMaybe; - amount_per_tickNEQ?: InputMaybe; - amount_per_tickNOTIN?: InputMaybe>>; - amount_per_tickNOTLIKE?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - start_boost_tick_count?: InputMaybe; - start_boost_tick_countEQ?: InputMaybe; - start_boost_tick_countGT?: InputMaybe; - start_boost_tick_countGTE?: InputMaybe; - start_boost_tick_countIN?: InputMaybe>>; - start_boost_tick_countLIKE?: InputMaybe; - start_boost_tick_countLT?: InputMaybe; - start_boost_tick_countLTE?: InputMaybe; - start_boost_tick_countNEQ?: InputMaybe; - start_boost_tick_countNOTIN?: InputMaybe>>; - start_boost_tick_countNOTLIKE?: InputMaybe; + amount_per_tick?: InputMaybe; + amount_per_tickEQ?: InputMaybe; + amount_per_tickGT?: InputMaybe; + amount_per_tickGTE?: InputMaybe; + amount_per_tickIN?: InputMaybe>>; + amount_per_tickLIKE?: InputMaybe; + amount_per_tickLT?: InputMaybe; + amount_per_tickLTE?: InputMaybe; + amount_per_tickNEQ?: InputMaybe; + amount_per_tickNOTIN?: InputMaybe>>; + amount_per_tickNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + start_boost_tick_count?: InputMaybe; + start_boost_tick_countEQ?: InputMaybe; + start_boost_tick_countGT?: InputMaybe; + start_boost_tick_countGTE?: InputMaybe; + start_boost_tick_countIN?: InputMaybe>>; + start_boost_tick_countLIKE?: InputMaybe; + start_boost_tick_countLT?: InputMaybe; + start_boost_tick_countLTE?: InputMaybe; + start_boost_tick_countNEQ?: InputMaybe; + start_boost_tick_countNOTIN?: InputMaybe>>; + start_boost_tick_countNOTLIKE?: InputMaybe; }; export type S0_Eternum_StaminaWhereInput = { - amount?: InputMaybe; - amountEQ?: InputMaybe; - amountGT?: InputMaybe; - amountGTE?: InputMaybe; - amountIN?: InputMaybe>>; - amountLIKE?: InputMaybe; - amountLT?: InputMaybe; - amountLTE?: InputMaybe; - amountNEQ?: InputMaybe; - amountNOTIN?: InputMaybe>>; - amountNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - last_refill_tick?: InputMaybe; - last_refill_tickEQ?: InputMaybe; - last_refill_tickGT?: InputMaybe; - last_refill_tickGTE?: InputMaybe; - last_refill_tickIN?: InputMaybe>>; - last_refill_tickLIKE?: InputMaybe; - last_refill_tickLT?: InputMaybe; - last_refill_tickLTE?: InputMaybe; - last_refill_tickNEQ?: InputMaybe; - last_refill_tickNOTIN?: InputMaybe>>; - last_refill_tickNOTLIKE?: InputMaybe; + amount?: InputMaybe; + amountEQ?: InputMaybe; + amountGT?: InputMaybe; + amountGTE?: InputMaybe; + amountIN?: InputMaybe>>; + amountLIKE?: InputMaybe; + amountLT?: InputMaybe; + amountLTE?: InputMaybe; + amountNEQ?: InputMaybe; + amountNOTIN?: InputMaybe>>; + amountNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + last_refill_tick?: InputMaybe; + last_refill_tickEQ?: InputMaybe; + last_refill_tickGT?: InputMaybe; + last_refill_tickGTE?: InputMaybe; + last_refill_tickIN?: InputMaybe>>; + last_refill_tickLIKE?: InputMaybe; + last_refill_tickLT?: InputMaybe; + last_refill_tickLTE?: InputMaybe; + last_refill_tickNEQ?: InputMaybe; + last_refill_tickNOTIN?: InputMaybe>>; + last_refill_tickNOTLIKE?: InputMaybe; }; export type S0_Eternum_StatusOrder = { @@ -5932,33 +5932,33 @@ export type S0_Eternum_StatusOrder = { }; export enum S0_Eternum_StatusOrderField { - TradeId = 'TRADE_ID', - Value = 'VALUE' + TradeId = "TRADE_ID", + Value = "VALUE", } export type S0_Eternum_StatusWhereInput = { - trade_id?: InputMaybe; - trade_idEQ?: InputMaybe; - trade_idGT?: InputMaybe; - trade_idGTE?: InputMaybe; - trade_idIN?: InputMaybe>>; - trade_idLIKE?: InputMaybe; - trade_idLT?: InputMaybe; - trade_idLTE?: InputMaybe; - trade_idNEQ?: InputMaybe; - trade_idNOTIN?: InputMaybe>>; - trade_idNOTLIKE?: InputMaybe; - value?: InputMaybe; - valueEQ?: InputMaybe; - valueGT?: InputMaybe; - valueGTE?: InputMaybe; - valueIN?: InputMaybe>>; - valueLIKE?: InputMaybe; - valueLT?: InputMaybe; - valueLTE?: InputMaybe; - valueNEQ?: InputMaybe; - valueNOTIN?: InputMaybe>>; - valueNOTLIKE?: InputMaybe; + trade_id?: InputMaybe; + trade_idEQ?: InputMaybe; + trade_idGT?: InputMaybe; + trade_idGTE?: InputMaybe; + trade_idIN?: InputMaybe>>; + trade_idLIKE?: InputMaybe; + trade_idLT?: InputMaybe; + trade_idLTE?: InputMaybe; + trade_idNEQ?: InputMaybe; + trade_idNOTIN?: InputMaybe>>; + trade_idNOTLIKE?: InputMaybe; + value?: InputMaybe; + valueEQ?: InputMaybe; + valueGT?: InputMaybe; + valueGTE?: InputMaybe; + valueIN?: InputMaybe>>; + valueLIKE?: InputMaybe; + valueLT?: InputMaybe; + valueLTE?: InputMaybe; + valueNEQ?: InputMaybe; + valueNOTIN?: InputMaybe>>; + valueNOTLIKE?: InputMaybe; }; export type S0_Eternum_StructureCountOrder = { @@ -5967,22 +5967,22 @@ export type S0_Eternum_StructureCountOrder = { }; export enum S0_Eternum_StructureCountOrderField { - Coord = 'COORD', - Count = 'COUNT' + Coord = "COORD", + Count = "COUNT", } export type S0_Eternum_StructureCountWhereInput = { - count?: InputMaybe; - countEQ?: InputMaybe; - countGT?: InputMaybe; - countGTE?: InputMaybe; - countIN?: InputMaybe>>; - countLIKE?: InputMaybe; - countLT?: InputMaybe; - countLTE?: InputMaybe; - countNEQ?: InputMaybe; - countNOTIN?: InputMaybe>>; - countNOTLIKE?: InputMaybe; + count?: InputMaybe; + countEQ?: InputMaybe; + countGT?: InputMaybe; + countGTE?: InputMaybe; + countIN?: InputMaybe>>; + countLIKE?: InputMaybe; + countLT?: InputMaybe; + countLTE?: InputMaybe; + countNEQ?: InputMaybe; + countNOTIN?: InputMaybe>>; + countNOTLIKE?: InputMaybe; }; export type S0_Eternum_StructureOrder = { @@ -5991,35 +5991,35 @@ export type S0_Eternum_StructureOrder = { }; export enum S0_Eternum_StructureOrderField { - Category = 'CATEGORY', - CreatedAt = 'CREATED_AT', - EntityId = 'ENTITY_ID' + Category = "CATEGORY", + CreatedAt = "CREATED_AT", + EntityId = "ENTITY_ID", } export type S0_Eternum_StructureWhereInput = { - category?: InputMaybe; - created_at?: InputMaybe; - created_atEQ?: InputMaybe; - created_atGT?: InputMaybe; - created_atGTE?: InputMaybe; - created_atIN?: InputMaybe>>; - created_atLIKE?: InputMaybe; - created_atLT?: InputMaybe; - created_atLTE?: InputMaybe; - created_atNEQ?: InputMaybe; - created_atNOTIN?: InputMaybe>>; - created_atNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; + category?: InputMaybe; + created_at?: InputMaybe; + created_atEQ?: InputMaybe; + created_atGT?: InputMaybe; + created_atGTE?: InputMaybe; + created_atIN?: InputMaybe>>; + created_atLIKE?: InputMaybe; + created_atLT?: InputMaybe; + created_atLTE?: InputMaybe; + created_atNEQ?: InputMaybe; + created_atNOTIN?: InputMaybe>>; + created_atNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_SwapEventOrder = { @@ -6028,131 +6028,131 @@ export type S0_Eternum_SwapEventOrder = { }; export enum S0_Eternum_SwapEventOrderField { - BankEntityId = 'BANK_ENTITY_ID', - BankOwnerFees = 'BANK_OWNER_FEES', - Buy = 'BUY', - EntityId = 'ENTITY_ID', - Id = 'ID', - LordsAmount = 'LORDS_AMOUNT', - LpFees = 'LP_FEES', - ResourceAmount = 'RESOURCE_AMOUNT', - ResourcePrice = 'RESOURCE_PRICE', - ResourceType = 'RESOURCE_TYPE', - Timestamp = 'TIMESTAMP' + BankEntityId = "BANK_ENTITY_ID", + BankOwnerFees = "BANK_OWNER_FEES", + Buy = "BUY", + EntityId = "ENTITY_ID", + Id = "ID", + LordsAmount = "LORDS_AMOUNT", + LpFees = "LP_FEES", + ResourceAmount = "RESOURCE_AMOUNT", + ResourcePrice = "RESOURCE_PRICE", + ResourceType = "RESOURCE_TYPE", + Timestamp = "TIMESTAMP", } export type S0_Eternum_SwapEventWhereInput = { - bank_entity_id?: InputMaybe; - bank_entity_idEQ?: InputMaybe; - bank_entity_idGT?: InputMaybe; - bank_entity_idGTE?: InputMaybe; - bank_entity_idIN?: InputMaybe>>; - bank_entity_idLIKE?: InputMaybe; - bank_entity_idLT?: InputMaybe; - bank_entity_idLTE?: InputMaybe; - bank_entity_idNEQ?: InputMaybe; - bank_entity_idNOTIN?: InputMaybe>>; - bank_entity_idNOTLIKE?: InputMaybe; - bank_owner_fees?: InputMaybe; - bank_owner_feesEQ?: InputMaybe; - bank_owner_feesGT?: InputMaybe; - bank_owner_feesGTE?: InputMaybe; - bank_owner_feesIN?: InputMaybe>>; - bank_owner_feesLIKE?: InputMaybe; - bank_owner_feesLT?: InputMaybe; - bank_owner_feesLTE?: InputMaybe; - bank_owner_feesNEQ?: InputMaybe; - bank_owner_feesNOTIN?: InputMaybe>>; - bank_owner_feesNOTLIKE?: InputMaybe; - buy?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - lords_amount?: InputMaybe; - lords_amountEQ?: InputMaybe; - lords_amountGT?: InputMaybe; - lords_amountGTE?: InputMaybe; - lords_amountIN?: InputMaybe>>; - lords_amountLIKE?: InputMaybe; - lords_amountLT?: InputMaybe; - lords_amountLTE?: InputMaybe; - lords_amountNEQ?: InputMaybe; - lords_amountNOTIN?: InputMaybe>>; - lords_amountNOTLIKE?: InputMaybe; - lp_fees?: InputMaybe; - lp_feesEQ?: InputMaybe; - lp_feesGT?: InputMaybe; - lp_feesGTE?: InputMaybe; - lp_feesIN?: InputMaybe>>; - lp_feesLIKE?: InputMaybe; - lp_feesLT?: InputMaybe; - lp_feesLTE?: InputMaybe; - lp_feesNEQ?: InputMaybe; - lp_feesNOTIN?: InputMaybe>>; - lp_feesNOTLIKE?: InputMaybe; - resource_amount?: InputMaybe; - resource_amountEQ?: InputMaybe; - resource_amountGT?: InputMaybe; - resource_amountGTE?: InputMaybe; - resource_amountIN?: InputMaybe>>; - resource_amountLIKE?: InputMaybe; - resource_amountLT?: InputMaybe; - resource_amountLTE?: InputMaybe; - resource_amountNEQ?: InputMaybe; - resource_amountNOTIN?: InputMaybe>>; - resource_amountNOTLIKE?: InputMaybe; - resource_price?: InputMaybe; - resource_priceEQ?: InputMaybe; - resource_priceGT?: InputMaybe; - resource_priceGTE?: InputMaybe; - resource_priceIN?: InputMaybe>>; - resource_priceLIKE?: InputMaybe; - resource_priceLT?: InputMaybe; - resource_priceLTE?: InputMaybe; - resource_priceNEQ?: InputMaybe; - resource_priceNOTIN?: InputMaybe>>; - resource_priceNOTLIKE?: InputMaybe; - resource_type?: InputMaybe; - resource_typeEQ?: InputMaybe; - resource_typeGT?: InputMaybe; - resource_typeGTE?: InputMaybe; - resource_typeIN?: InputMaybe>>; - resource_typeLIKE?: InputMaybe; - resource_typeLT?: InputMaybe; - resource_typeLTE?: InputMaybe; - resource_typeNEQ?: InputMaybe; - resource_typeNOTIN?: InputMaybe>>; - resource_typeNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + bank_entity_id?: InputMaybe; + bank_entity_idEQ?: InputMaybe; + bank_entity_idGT?: InputMaybe; + bank_entity_idGTE?: InputMaybe; + bank_entity_idIN?: InputMaybe>>; + bank_entity_idLIKE?: InputMaybe; + bank_entity_idLT?: InputMaybe; + bank_entity_idLTE?: InputMaybe; + bank_entity_idNEQ?: InputMaybe; + bank_entity_idNOTIN?: InputMaybe>>; + bank_entity_idNOTLIKE?: InputMaybe; + bank_owner_fees?: InputMaybe; + bank_owner_feesEQ?: InputMaybe; + bank_owner_feesGT?: InputMaybe; + bank_owner_feesGTE?: InputMaybe; + bank_owner_feesIN?: InputMaybe>>; + bank_owner_feesLIKE?: InputMaybe; + bank_owner_feesLT?: InputMaybe; + bank_owner_feesLTE?: InputMaybe; + bank_owner_feesNEQ?: InputMaybe; + bank_owner_feesNOTIN?: InputMaybe>>; + bank_owner_feesNOTLIKE?: InputMaybe; + buy?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + lords_amount?: InputMaybe; + lords_amountEQ?: InputMaybe; + lords_amountGT?: InputMaybe; + lords_amountGTE?: InputMaybe; + lords_amountIN?: InputMaybe>>; + lords_amountLIKE?: InputMaybe; + lords_amountLT?: InputMaybe; + lords_amountLTE?: InputMaybe; + lords_amountNEQ?: InputMaybe; + lords_amountNOTIN?: InputMaybe>>; + lords_amountNOTLIKE?: InputMaybe; + lp_fees?: InputMaybe; + lp_feesEQ?: InputMaybe; + lp_feesGT?: InputMaybe; + lp_feesGTE?: InputMaybe; + lp_feesIN?: InputMaybe>>; + lp_feesLIKE?: InputMaybe; + lp_feesLT?: InputMaybe; + lp_feesLTE?: InputMaybe; + lp_feesNEQ?: InputMaybe; + lp_feesNOTIN?: InputMaybe>>; + lp_feesNOTLIKE?: InputMaybe; + resource_amount?: InputMaybe; + resource_amountEQ?: InputMaybe; + resource_amountGT?: InputMaybe; + resource_amountGTE?: InputMaybe; + resource_amountIN?: InputMaybe>>; + resource_amountLIKE?: InputMaybe; + resource_amountLT?: InputMaybe; + resource_amountLTE?: InputMaybe; + resource_amountNEQ?: InputMaybe; + resource_amountNOTIN?: InputMaybe>>; + resource_amountNOTLIKE?: InputMaybe; + resource_price?: InputMaybe; + resource_priceEQ?: InputMaybe; + resource_priceGT?: InputMaybe; + resource_priceGTE?: InputMaybe; + resource_priceIN?: InputMaybe>>; + resource_priceLIKE?: InputMaybe; + resource_priceLT?: InputMaybe; + resource_priceLTE?: InputMaybe; + resource_priceNEQ?: InputMaybe; + resource_priceNOTIN?: InputMaybe>>; + resource_priceNOTLIKE?: InputMaybe; + resource_type?: InputMaybe; + resource_typeEQ?: InputMaybe; + resource_typeGT?: InputMaybe; + resource_typeGTE?: InputMaybe; + resource_typeIN?: InputMaybe>>; + resource_typeLIKE?: InputMaybe; + resource_typeLT?: InputMaybe; + resource_typeLTE?: InputMaybe; + resource_typeNEQ?: InputMaybe; + resource_typeNOTIN?: InputMaybe>>; + resource_typeNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_TickConfigOrder = { @@ -6161,45 +6161,45 @@ export type S0_Eternum_TickConfigOrder = { }; export enum S0_Eternum_TickConfigOrderField { - ConfigId = 'CONFIG_ID', - TickId = 'TICK_ID', - TickIntervalInSeconds = 'TICK_INTERVAL_IN_SECONDS' + ConfigId = "CONFIG_ID", + TickId = "TICK_ID", + TickIntervalInSeconds = "TICK_INTERVAL_IN_SECONDS", } export type S0_Eternum_TickConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - tick_id?: InputMaybe; - tick_idEQ?: InputMaybe; - tick_idGT?: InputMaybe; - tick_idGTE?: InputMaybe; - tick_idIN?: InputMaybe>>; - tick_idLIKE?: InputMaybe; - tick_idLT?: InputMaybe; - tick_idLTE?: InputMaybe; - tick_idNEQ?: InputMaybe; - tick_idNOTIN?: InputMaybe>>; - tick_idNOTLIKE?: InputMaybe; - tick_interval_in_seconds?: InputMaybe; - tick_interval_in_secondsEQ?: InputMaybe; - tick_interval_in_secondsGT?: InputMaybe; - tick_interval_in_secondsGTE?: InputMaybe; - tick_interval_in_secondsIN?: InputMaybe>>; - tick_interval_in_secondsLIKE?: InputMaybe; - tick_interval_in_secondsLT?: InputMaybe; - tick_interval_in_secondsLTE?: InputMaybe; - tick_interval_in_secondsNEQ?: InputMaybe; - tick_interval_in_secondsNOTIN?: InputMaybe>>; - tick_interval_in_secondsNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + tick_id?: InputMaybe; + tick_idEQ?: InputMaybe; + tick_idGT?: InputMaybe; + tick_idGTE?: InputMaybe; + tick_idIN?: InputMaybe>>; + tick_idLIKE?: InputMaybe; + tick_idLT?: InputMaybe; + tick_idLTE?: InputMaybe; + tick_idNEQ?: InputMaybe; + tick_idNOTIN?: InputMaybe>>; + tick_idNOTLIKE?: InputMaybe; + tick_interval_in_seconds?: InputMaybe; + tick_interval_in_secondsEQ?: InputMaybe; + tick_interval_in_secondsGT?: InputMaybe; + tick_interval_in_secondsGTE?: InputMaybe; + tick_interval_in_secondsIN?: InputMaybe>>; + tick_interval_in_secondsLIKE?: InputMaybe; + tick_interval_in_secondsLT?: InputMaybe; + tick_interval_in_secondsLTE?: InputMaybe; + tick_interval_in_secondsNEQ?: InputMaybe; + tick_interval_in_secondsNOTIN?: InputMaybe>>; + tick_interval_in_secondsNOTLIKE?: InputMaybe; }; export type S0_Eternum_TileOrder = { @@ -6208,59 +6208,59 @@ export type S0_Eternum_TileOrder = { }; export enum S0_Eternum_TileOrderField { - Biome = 'BIOME', - Col = 'COL', - ExploredAt = 'EXPLORED_AT', - ExploredById = 'EXPLORED_BY_ID', - Row = 'ROW' + Biome = "BIOME", + Col = "COL", + ExploredAt = "EXPLORED_AT", + ExploredById = "EXPLORED_BY_ID", + Row = "ROW", } export type S0_Eternum_TileWhereInput = { - biome?: InputMaybe; - col?: InputMaybe; - colEQ?: InputMaybe; - colGT?: InputMaybe; - colGTE?: InputMaybe; - colIN?: InputMaybe>>; - colLIKE?: InputMaybe; - colLT?: InputMaybe; - colLTE?: InputMaybe; - colNEQ?: InputMaybe; - colNOTIN?: InputMaybe>>; - colNOTLIKE?: InputMaybe; - explored_at?: InputMaybe; - explored_atEQ?: InputMaybe; - explored_atGT?: InputMaybe; - explored_atGTE?: InputMaybe; - explored_atIN?: InputMaybe>>; - explored_atLIKE?: InputMaybe; - explored_atLT?: InputMaybe; - explored_atLTE?: InputMaybe; - explored_atNEQ?: InputMaybe; - explored_atNOTIN?: InputMaybe>>; - explored_atNOTLIKE?: InputMaybe; - explored_by_id?: InputMaybe; - explored_by_idEQ?: InputMaybe; - explored_by_idGT?: InputMaybe; - explored_by_idGTE?: InputMaybe; - explored_by_idIN?: InputMaybe>>; - explored_by_idLIKE?: InputMaybe; - explored_by_idLT?: InputMaybe; - explored_by_idLTE?: InputMaybe; - explored_by_idNEQ?: InputMaybe; - explored_by_idNOTIN?: InputMaybe>>; - explored_by_idNOTLIKE?: InputMaybe; - row?: InputMaybe; - rowEQ?: InputMaybe; - rowGT?: InputMaybe; - rowGTE?: InputMaybe; - rowIN?: InputMaybe>>; - rowLIKE?: InputMaybe; - rowLT?: InputMaybe; - rowLTE?: InputMaybe; - rowNEQ?: InputMaybe; - rowNOTIN?: InputMaybe>>; - rowNOTLIKE?: InputMaybe; + biome?: InputMaybe; + col?: InputMaybe; + colEQ?: InputMaybe; + colGT?: InputMaybe; + colGTE?: InputMaybe; + colIN?: InputMaybe>>; + colLIKE?: InputMaybe; + colLT?: InputMaybe; + colLTE?: InputMaybe; + colNEQ?: InputMaybe; + colNOTIN?: InputMaybe>>; + colNOTLIKE?: InputMaybe; + explored_at?: InputMaybe; + explored_atEQ?: InputMaybe; + explored_atGT?: InputMaybe; + explored_atGTE?: InputMaybe; + explored_atIN?: InputMaybe>>; + explored_atLIKE?: InputMaybe; + explored_atLT?: InputMaybe; + explored_atLTE?: InputMaybe; + explored_atNEQ?: InputMaybe; + explored_atNOTIN?: InputMaybe>>; + explored_atNOTLIKE?: InputMaybe; + explored_by_id?: InputMaybe; + explored_by_idEQ?: InputMaybe; + explored_by_idGT?: InputMaybe; + explored_by_idGTE?: InputMaybe; + explored_by_idIN?: InputMaybe>>; + explored_by_idLIKE?: InputMaybe; + explored_by_idLT?: InputMaybe; + explored_by_idLTE?: InputMaybe; + explored_by_idNEQ?: InputMaybe; + explored_by_idNOTIN?: InputMaybe>>; + explored_by_idNOTLIKE?: InputMaybe; + row?: InputMaybe; + rowEQ?: InputMaybe; + rowGT?: InputMaybe; + rowGTE?: InputMaybe; + rowIN?: InputMaybe>>; + rowLIKE?: InputMaybe; + rowLT?: InputMaybe; + rowLTE?: InputMaybe; + rowNEQ?: InputMaybe; + rowNOTIN?: InputMaybe>>; + rowNOTLIKE?: InputMaybe; }; export type S0_Eternum_TradeOrder = { @@ -6269,153 +6269,153 @@ export type S0_Eternum_TradeOrder = { }; export enum S0_Eternum_TradeOrderField { - ExpiresAt = 'EXPIRES_AT', - MakerGivesResourcesHash = 'MAKER_GIVES_RESOURCES_HASH', - MakerGivesResourcesId = 'MAKER_GIVES_RESOURCES_ID', - MakerGivesResourcesOriginId = 'MAKER_GIVES_RESOURCES_ORIGIN_ID', - MakerGivesResourcesWeight = 'MAKER_GIVES_RESOURCES_WEIGHT', - MakerId = 'MAKER_ID', - TakerGivesResourcesHash = 'TAKER_GIVES_RESOURCES_HASH', - TakerGivesResourcesId = 'TAKER_GIVES_RESOURCES_ID', - TakerGivesResourcesOriginId = 'TAKER_GIVES_RESOURCES_ORIGIN_ID', - TakerGivesResourcesWeight = 'TAKER_GIVES_RESOURCES_WEIGHT', - TakerId = 'TAKER_ID', - TradeId = 'TRADE_ID' + ExpiresAt = "EXPIRES_AT", + MakerGivesResourcesHash = "MAKER_GIVES_RESOURCES_HASH", + MakerGivesResourcesId = "MAKER_GIVES_RESOURCES_ID", + MakerGivesResourcesOriginId = "MAKER_GIVES_RESOURCES_ORIGIN_ID", + MakerGivesResourcesWeight = "MAKER_GIVES_RESOURCES_WEIGHT", + MakerId = "MAKER_ID", + TakerGivesResourcesHash = "TAKER_GIVES_RESOURCES_HASH", + TakerGivesResourcesId = "TAKER_GIVES_RESOURCES_ID", + TakerGivesResourcesOriginId = "TAKER_GIVES_RESOURCES_ORIGIN_ID", + TakerGivesResourcesWeight = "TAKER_GIVES_RESOURCES_WEIGHT", + TakerId = "TAKER_ID", + TradeId = "TRADE_ID", } export type S0_Eternum_TradeWhereInput = { - expires_at?: InputMaybe; - expires_atEQ?: InputMaybe; - expires_atGT?: InputMaybe; - expires_atGTE?: InputMaybe; - expires_atIN?: InputMaybe>>; - expires_atLIKE?: InputMaybe; - expires_atLT?: InputMaybe; - expires_atLTE?: InputMaybe; - expires_atNEQ?: InputMaybe; - expires_atNOTIN?: InputMaybe>>; - expires_atNOTLIKE?: InputMaybe; - maker_gives_resources_hash?: InputMaybe; - maker_gives_resources_hashEQ?: InputMaybe; - maker_gives_resources_hashGT?: InputMaybe; - maker_gives_resources_hashGTE?: InputMaybe; - maker_gives_resources_hashIN?: InputMaybe>>; - maker_gives_resources_hashLIKE?: InputMaybe; - maker_gives_resources_hashLT?: InputMaybe; - maker_gives_resources_hashLTE?: InputMaybe; - maker_gives_resources_hashNEQ?: InputMaybe; - maker_gives_resources_hashNOTIN?: InputMaybe>>; - maker_gives_resources_hashNOTLIKE?: InputMaybe; - maker_gives_resources_id?: InputMaybe; - maker_gives_resources_idEQ?: InputMaybe; - maker_gives_resources_idGT?: InputMaybe; - maker_gives_resources_idGTE?: InputMaybe; - maker_gives_resources_idIN?: InputMaybe>>; - maker_gives_resources_idLIKE?: InputMaybe; - maker_gives_resources_idLT?: InputMaybe; - maker_gives_resources_idLTE?: InputMaybe; - maker_gives_resources_idNEQ?: InputMaybe; - maker_gives_resources_idNOTIN?: InputMaybe>>; - maker_gives_resources_idNOTLIKE?: InputMaybe; - maker_gives_resources_origin_id?: InputMaybe; - maker_gives_resources_origin_idEQ?: InputMaybe; - maker_gives_resources_origin_idGT?: InputMaybe; - maker_gives_resources_origin_idGTE?: InputMaybe; - maker_gives_resources_origin_idIN?: InputMaybe>>; - maker_gives_resources_origin_idLIKE?: InputMaybe; - maker_gives_resources_origin_idLT?: InputMaybe; - maker_gives_resources_origin_idLTE?: InputMaybe; - maker_gives_resources_origin_idNEQ?: InputMaybe; - maker_gives_resources_origin_idNOTIN?: InputMaybe>>; - maker_gives_resources_origin_idNOTLIKE?: InputMaybe; - maker_gives_resources_weight?: InputMaybe; - maker_gives_resources_weightEQ?: InputMaybe; - maker_gives_resources_weightGT?: InputMaybe; - maker_gives_resources_weightGTE?: InputMaybe; - maker_gives_resources_weightIN?: InputMaybe>>; - maker_gives_resources_weightLIKE?: InputMaybe; - maker_gives_resources_weightLT?: InputMaybe; - maker_gives_resources_weightLTE?: InputMaybe; - maker_gives_resources_weightNEQ?: InputMaybe; - maker_gives_resources_weightNOTIN?: InputMaybe>>; - maker_gives_resources_weightNOTLIKE?: InputMaybe; - maker_id?: InputMaybe; - maker_idEQ?: InputMaybe; - maker_idGT?: InputMaybe; - maker_idGTE?: InputMaybe; - maker_idIN?: InputMaybe>>; - maker_idLIKE?: InputMaybe; - maker_idLT?: InputMaybe; - maker_idLTE?: InputMaybe; - maker_idNEQ?: InputMaybe; - maker_idNOTIN?: InputMaybe>>; - maker_idNOTLIKE?: InputMaybe; - taker_gives_resources_hash?: InputMaybe; - taker_gives_resources_hashEQ?: InputMaybe; - taker_gives_resources_hashGT?: InputMaybe; - taker_gives_resources_hashGTE?: InputMaybe; - taker_gives_resources_hashIN?: InputMaybe>>; - taker_gives_resources_hashLIKE?: InputMaybe; - taker_gives_resources_hashLT?: InputMaybe; - taker_gives_resources_hashLTE?: InputMaybe; - taker_gives_resources_hashNEQ?: InputMaybe; - taker_gives_resources_hashNOTIN?: InputMaybe>>; - taker_gives_resources_hashNOTLIKE?: InputMaybe; - taker_gives_resources_id?: InputMaybe; - taker_gives_resources_idEQ?: InputMaybe; - taker_gives_resources_idGT?: InputMaybe; - taker_gives_resources_idGTE?: InputMaybe; - taker_gives_resources_idIN?: InputMaybe>>; - taker_gives_resources_idLIKE?: InputMaybe; - taker_gives_resources_idLT?: InputMaybe; - taker_gives_resources_idLTE?: InputMaybe; - taker_gives_resources_idNEQ?: InputMaybe; - taker_gives_resources_idNOTIN?: InputMaybe>>; - taker_gives_resources_idNOTLIKE?: InputMaybe; - taker_gives_resources_origin_id?: InputMaybe; - taker_gives_resources_origin_idEQ?: InputMaybe; - taker_gives_resources_origin_idGT?: InputMaybe; - taker_gives_resources_origin_idGTE?: InputMaybe; - taker_gives_resources_origin_idIN?: InputMaybe>>; - taker_gives_resources_origin_idLIKE?: InputMaybe; - taker_gives_resources_origin_idLT?: InputMaybe; - taker_gives_resources_origin_idLTE?: InputMaybe; - taker_gives_resources_origin_idNEQ?: InputMaybe; - taker_gives_resources_origin_idNOTIN?: InputMaybe>>; - taker_gives_resources_origin_idNOTLIKE?: InputMaybe; - taker_gives_resources_weight?: InputMaybe; - taker_gives_resources_weightEQ?: InputMaybe; - taker_gives_resources_weightGT?: InputMaybe; - taker_gives_resources_weightGTE?: InputMaybe; - taker_gives_resources_weightIN?: InputMaybe>>; - taker_gives_resources_weightLIKE?: InputMaybe; - taker_gives_resources_weightLT?: InputMaybe; - taker_gives_resources_weightLTE?: InputMaybe; - taker_gives_resources_weightNEQ?: InputMaybe; - taker_gives_resources_weightNOTIN?: InputMaybe>>; - taker_gives_resources_weightNOTLIKE?: InputMaybe; - taker_id?: InputMaybe; - taker_idEQ?: InputMaybe; - taker_idGT?: InputMaybe; - taker_idGTE?: InputMaybe; - taker_idIN?: InputMaybe>>; - taker_idLIKE?: InputMaybe; - taker_idLT?: InputMaybe; - taker_idLTE?: InputMaybe; - taker_idNEQ?: InputMaybe; - taker_idNOTIN?: InputMaybe>>; - taker_idNOTLIKE?: InputMaybe; - trade_id?: InputMaybe; - trade_idEQ?: InputMaybe; - trade_idGT?: InputMaybe; - trade_idGTE?: InputMaybe; - trade_idIN?: InputMaybe>>; - trade_idLIKE?: InputMaybe; - trade_idLT?: InputMaybe; - trade_idLTE?: InputMaybe; - trade_idNEQ?: InputMaybe; - trade_idNOTIN?: InputMaybe>>; - trade_idNOTLIKE?: InputMaybe; + expires_at?: InputMaybe; + expires_atEQ?: InputMaybe; + expires_atGT?: InputMaybe; + expires_atGTE?: InputMaybe; + expires_atIN?: InputMaybe>>; + expires_atLIKE?: InputMaybe; + expires_atLT?: InputMaybe; + expires_atLTE?: InputMaybe; + expires_atNEQ?: InputMaybe; + expires_atNOTIN?: InputMaybe>>; + expires_atNOTLIKE?: InputMaybe; + maker_gives_resources_hash?: InputMaybe; + maker_gives_resources_hashEQ?: InputMaybe; + maker_gives_resources_hashGT?: InputMaybe; + maker_gives_resources_hashGTE?: InputMaybe; + maker_gives_resources_hashIN?: InputMaybe>>; + maker_gives_resources_hashLIKE?: InputMaybe; + maker_gives_resources_hashLT?: InputMaybe; + maker_gives_resources_hashLTE?: InputMaybe; + maker_gives_resources_hashNEQ?: InputMaybe; + maker_gives_resources_hashNOTIN?: InputMaybe>>; + maker_gives_resources_hashNOTLIKE?: InputMaybe; + maker_gives_resources_id?: InputMaybe; + maker_gives_resources_idEQ?: InputMaybe; + maker_gives_resources_idGT?: InputMaybe; + maker_gives_resources_idGTE?: InputMaybe; + maker_gives_resources_idIN?: InputMaybe>>; + maker_gives_resources_idLIKE?: InputMaybe; + maker_gives_resources_idLT?: InputMaybe; + maker_gives_resources_idLTE?: InputMaybe; + maker_gives_resources_idNEQ?: InputMaybe; + maker_gives_resources_idNOTIN?: InputMaybe>>; + maker_gives_resources_idNOTLIKE?: InputMaybe; + maker_gives_resources_origin_id?: InputMaybe; + maker_gives_resources_origin_idEQ?: InputMaybe; + maker_gives_resources_origin_idGT?: InputMaybe; + maker_gives_resources_origin_idGTE?: InputMaybe; + maker_gives_resources_origin_idIN?: InputMaybe>>; + maker_gives_resources_origin_idLIKE?: InputMaybe; + maker_gives_resources_origin_idLT?: InputMaybe; + maker_gives_resources_origin_idLTE?: InputMaybe; + maker_gives_resources_origin_idNEQ?: InputMaybe; + maker_gives_resources_origin_idNOTIN?: InputMaybe>>; + maker_gives_resources_origin_idNOTLIKE?: InputMaybe; + maker_gives_resources_weight?: InputMaybe; + maker_gives_resources_weightEQ?: InputMaybe; + maker_gives_resources_weightGT?: InputMaybe; + maker_gives_resources_weightGTE?: InputMaybe; + maker_gives_resources_weightIN?: InputMaybe>>; + maker_gives_resources_weightLIKE?: InputMaybe; + maker_gives_resources_weightLT?: InputMaybe; + maker_gives_resources_weightLTE?: InputMaybe; + maker_gives_resources_weightNEQ?: InputMaybe; + maker_gives_resources_weightNOTIN?: InputMaybe>>; + maker_gives_resources_weightNOTLIKE?: InputMaybe; + maker_id?: InputMaybe; + maker_idEQ?: InputMaybe; + maker_idGT?: InputMaybe; + maker_idGTE?: InputMaybe; + maker_idIN?: InputMaybe>>; + maker_idLIKE?: InputMaybe; + maker_idLT?: InputMaybe; + maker_idLTE?: InputMaybe; + maker_idNEQ?: InputMaybe; + maker_idNOTIN?: InputMaybe>>; + maker_idNOTLIKE?: InputMaybe; + taker_gives_resources_hash?: InputMaybe; + taker_gives_resources_hashEQ?: InputMaybe; + taker_gives_resources_hashGT?: InputMaybe; + taker_gives_resources_hashGTE?: InputMaybe; + taker_gives_resources_hashIN?: InputMaybe>>; + taker_gives_resources_hashLIKE?: InputMaybe; + taker_gives_resources_hashLT?: InputMaybe; + taker_gives_resources_hashLTE?: InputMaybe; + taker_gives_resources_hashNEQ?: InputMaybe; + taker_gives_resources_hashNOTIN?: InputMaybe>>; + taker_gives_resources_hashNOTLIKE?: InputMaybe; + taker_gives_resources_id?: InputMaybe; + taker_gives_resources_idEQ?: InputMaybe; + taker_gives_resources_idGT?: InputMaybe; + taker_gives_resources_idGTE?: InputMaybe; + taker_gives_resources_idIN?: InputMaybe>>; + taker_gives_resources_idLIKE?: InputMaybe; + taker_gives_resources_idLT?: InputMaybe; + taker_gives_resources_idLTE?: InputMaybe; + taker_gives_resources_idNEQ?: InputMaybe; + taker_gives_resources_idNOTIN?: InputMaybe>>; + taker_gives_resources_idNOTLIKE?: InputMaybe; + taker_gives_resources_origin_id?: InputMaybe; + taker_gives_resources_origin_idEQ?: InputMaybe; + taker_gives_resources_origin_idGT?: InputMaybe; + taker_gives_resources_origin_idGTE?: InputMaybe; + taker_gives_resources_origin_idIN?: InputMaybe>>; + taker_gives_resources_origin_idLIKE?: InputMaybe; + taker_gives_resources_origin_idLT?: InputMaybe; + taker_gives_resources_origin_idLTE?: InputMaybe; + taker_gives_resources_origin_idNEQ?: InputMaybe; + taker_gives_resources_origin_idNOTIN?: InputMaybe>>; + taker_gives_resources_origin_idNOTLIKE?: InputMaybe; + taker_gives_resources_weight?: InputMaybe; + taker_gives_resources_weightEQ?: InputMaybe; + taker_gives_resources_weightGT?: InputMaybe; + taker_gives_resources_weightGTE?: InputMaybe; + taker_gives_resources_weightIN?: InputMaybe>>; + taker_gives_resources_weightLIKE?: InputMaybe; + taker_gives_resources_weightLT?: InputMaybe; + taker_gives_resources_weightLTE?: InputMaybe; + taker_gives_resources_weightNEQ?: InputMaybe; + taker_gives_resources_weightNOTIN?: InputMaybe>>; + taker_gives_resources_weightNOTLIKE?: InputMaybe; + taker_id?: InputMaybe; + taker_idEQ?: InputMaybe; + taker_idGT?: InputMaybe; + taker_idGTE?: InputMaybe; + taker_idIN?: InputMaybe>>; + taker_idLIKE?: InputMaybe; + taker_idLT?: InputMaybe; + taker_idLTE?: InputMaybe; + taker_idNEQ?: InputMaybe; + taker_idNOTIN?: InputMaybe>>; + taker_idNOTLIKE?: InputMaybe; + trade_id?: InputMaybe; + trade_idEQ?: InputMaybe; + trade_idGT?: InputMaybe; + trade_idGTE?: InputMaybe; + trade_idIN?: InputMaybe>>; + trade_idLIKE?: InputMaybe; + trade_idLT?: InputMaybe; + trade_idLTE?: InputMaybe; + trade_idNEQ?: InputMaybe; + trade_idNOTIN?: InputMaybe>>; + trade_idNOTLIKE?: InputMaybe; }; export type S0_Eternum_TransferOrder = { @@ -6424,58 +6424,58 @@ export type S0_Eternum_TransferOrder = { }; export enum S0_Eternum_TransferOrderField { - RecipientEntityId = 'RECIPIENT_ENTITY_ID', - Resources = 'RESOURCES', - SenderEntityId = 'SENDER_ENTITY_ID', - SendingRealmId = 'SENDING_REALM_ID', - Timestamp = 'TIMESTAMP' + RecipientEntityId = "RECIPIENT_ENTITY_ID", + Resources = "RESOURCES", + SenderEntityId = "SENDER_ENTITY_ID", + SendingRealmId = "SENDING_REALM_ID", + Timestamp = "TIMESTAMP", } export type S0_Eternum_TransferWhereInput = { - recipient_entity_id?: InputMaybe; - recipient_entity_idEQ?: InputMaybe; - recipient_entity_idGT?: InputMaybe; - recipient_entity_idGTE?: InputMaybe; - recipient_entity_idIN?: InputMaybe>>; - recipient_entity_idLIKE?: InputMaybe; - recipient_entity_idLT?: InputMaybe; - recipient_entity_idLTE?: InputMaybe; - recipient_entity_idNEQ?: InputMaybe; - recipient_entity_idNOTIN?: InputMaybe>>; - recipient_entity_idNOTLIKE?: InputMaybe; - sender_entity_id?: InputMaybe; - sender_entity_idEQ?: InputMaybe; - sender_entity_idGT?: InputMaybe; - sender_entity_idGTE?: InputMaybe; - sender_entity_idIN?: InputMaybe>>; - sender_entity_idLIKE?: InputMaybe; - sender_entity_idLT?: InputMaybe; - sender_entity_idLTE?: InputMaybe; - sender_entity_idNEQ?: InputMaybe; - sender_entity_idNOTIN?: InputMaybe>>; - sender_entity_idNOTLIKE?: InputMaybe; - sending_realm_id?: InputMaybe; - sending_realm_idEQ?: InputMaybe; - sending_realm_idGT?: InputMaybe; - sending_realm_idGTE?: InputMaybe; - sending_realm_idIN?: InputMaybe>>; - sending_realm_idLIKE?: InputMaybe; - sending_realm_idLT?: InputMaybe; - sending_realm_idLTE?: InputMaybe; - sending_realm_idNEQ?: InputMaybe; - sending_realm_idNOTIN?: InputMaybe>>; - sending_realm_idNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; + recipient_entity_id?: InputMaybe; + recipient_entity_idEQ?: InputMaybe; + recipient_entity_idGT?: InputMaybe; + recipient_entity_idGTE?: InputMaybe; + recipient_entity_idIN?: InputMaybe>>; + recipient_entity_idLIKE?: InputMaybe; + recipient_entity_idLT?: InputMaybe; + recipient_entity_idLTE?: InputMaybe; + recipient_entity_idNEQ?: InputMaybe; + recipient_entity_idNOTIN?: InputMaybe>>; + recipient_entity_idNOTLIKE?: InputMaybe; + sender_entity_id?: InputMaybe; + sender_entity_idEQ?: InputMaybe; + sender_entity_idGT?: InputMaybe; + sender_entity_idGTE?: InputMaybe; + sender_entity_idIN?: InputMaybe>>; + sender_entity_idLIKE?: InputMaybe; + sender_entity_idLT?: InputMaybe; + sender_entity_idLTE?: InputMaybe; + sender_entity_idNEQ?: InputMaybe; + sender_entity_idNOTIN?: InputMaybe>>; + sender_entity_idNOTLIKE?: InputMaybe; + sending_realm_id?: InputMaybe; + sending_realm_idEQ?: InputMaybe; + sending_realm_idGT?: InputMaybe; + sending_realm_idGTE?: InputMaybe; + sending_realm_idIN?: InputMaybe>>; + sending_realm_idLIKE?: InputMaybe; + sending_realm_idLT?: InputMaybe; + sending_realm_idLTE?: InputMaybe; + sending_realm_idNEQ?: InputMaybe; + sending_realm_idNOTIN?: InputMaybe>>; + sending_realm_idNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; }; export type S0_Eternum_TravelFoodCostConfigOrder = { @@ -6484,81 +6484,81 @@ export type S0_Eternum_TravelFoodCostConfigOrder = { }; export enum S0_Eternum_TravelFoodCostConfigOrderField { - ConfigId = 'CONFIG_ID', - ExploreFishBurnAmount = 'EXPLORE_FISH_BURN_AMOUNT', - ExploreWheatBurnAmount = 'EXPLORE_WHEAT_BURN_AMOUNT', - TravelFishBurnAmount = 'TRAVEL_FISH_BURN_AMOUNT', - TravelWheatBurnAmount = 'TRAVEL_WHEAT_BURN_AMOUNT', - UnitType = 'UNIT_TYPE' + ConfigId = "CONFIG_ID", + ExploreFishBurnAmount = "EXPLORE_FISH_BURN_AMOUNT", + ExploreWheatBurnAmount = "EXPLORE_WHEAT_BURN_AMOUNT", + TravelFishBurnAmount = "TRAVEL_FISH_BURN_AMOUNT", + TravelWheatBurnAmount = "TRAVEL_WHEAT_BURN_AMOUNT", + UnitType = "UNIT_TYPE", } export type S0_Eternum_TravelFoodCostConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - explore_fish_burn_amount?: InputMaybe; - explore_fish_burn_amountEQ?: InputMaybe; - explore_fish_burn_amountGT?: InputMaybe; - explore_fish_burn_amountGTE?: InputMaybe; - explore_fish_burn_amountIN?: InputMaybe>>; - explore_fish_burn_amountLIKE?: InputMaybe; - explore_fish_burn_amountLT?: InputMaybe; - explore_fish_burn_amountLTE?: InputMaybe; - explore_fish_burn_amountNEQ?: InputMaybe; - explore_fish_burn_amountNOTIN?: InputMaybe>>; - explore_fish_burn_amountNOTLIKE?: InputMaybe; - explore_wheat_burn_amount?: InputMaybe; - explore_wheat_burn_amountEQ?: InputMaybe; - explore_wheat_burn_amountGT?: InputMaybe; - explore_wheat_burn_amountGTE?: InputMaybe; - explore_wheat_burn_amountIN?: InputMaybe>>; - explore_wheat_burn_amountLIKE?: InputMaybe; - explore_wheat_burn_amountLT?: InputMaybe; - explore_wheat_burn_amountLTE?: InputMaybe; - explore_wheat_burn_amountNEQ?: InputMaybe; - explore_wheat_burn_amountNOTIN?: InputMaybe>>; - explore_wheat_burn_amountNOTLIKE?: InputMaybe; - travel_fish_burn_amount?: InputMaybe; - travel_fish_burn_amountEQ?: InputMaybe; - travel_fish_burn_amountGT?: InputMaybe; - travel_fish_burn_amountGTE?: InputMaybe; - travel_fish_burn_amountIN?: InputMaybe>>; - travel_fish_burn_amountLIKE?: InputMaybe; - travel_fish_burn_amountLT?: InputMaybe; - travel_fish_burn_amountLTE?: InputMaybe; - travel_fish_burn_amountNEQ?: InputMaybe; - travel_fish_burn_amountNOTIN?: InputMaybe>>; - travel_fish_burn_amountNOTLIKE?: InputMaybe; - travel_wheat_burn_amount?: InputMaybe; - travel_wheat_burn_amountEQ?: InputMaybe; - travel_wheat_burn_amountGT?: InputMaybe; - travel_wheat_burn_amountGTE?: InputMaybe; - travel_wheat_burn_amountIN?: InputMaybe>>; - travel_wheat_burn_amountLIKE?: InputMaybe; - travel_wheat_burn_amountLT?: InputMaybe; - travel_wheat_burn_amountLTE?: InputMaybe; - travel_wheat_burn_amountNEQ?: InputMaybe; - travel_wheat_burn_amountNOTIN?: InputMaybe>>; - travel_wheat_burn_amountNOTLIKE?: InputMaybe; - unit_type?: InputMaybe; - unit_typeEQ?: InputMaybe; - unit_typeGT?: InputMaybe; - unit_typeGTE?: InputMaybe; - unit_typeIN?: InputMaybe>>; - unit_typeLIKE?: InputMaybe; - unit_typeLT?: InputMaybe; - unit_typeLTE?: InputMaybe; - unit_typeNEQ?: InputMaybe; - unit_typeNOTIN?: InputMaybe>>; - unit_typeNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + explore_fish_burn_amount?: InputMaybe; + explore_fish_burn_amountEQ?: InputMaybe; + explore_fish_burn_amountGT?: InputMaybe; + explore_fish_burn_amountGTE?: InputMaybe; + explore_fish_burn_amountIN?: InputMaybe>>; + explore_fish_burn_amountLIKE?: InputMaybe; + explore_fish_burn_amountLT?: InputMaybe; + explore_fish_burn_amountLTE?: InputMaybe; + explore_fish_burn_amountNEQ?: InputMaybe; + explore_fish_burn_amountNOTIN?: InputMaybe>>; + explore_fish_burn_amountNOTLIKE?: InputMaybe; + explore_wheat_burn_amount?: InputMaybe; + explore_wheat_burn_amountEQ?: InputMaybe; + explore_wheat_burn_amountGT?: InputMaybe; + explore_wheat_burn_amountGTE?: InputMaybe; + explore_wheat_burn_amountIN?: InputMaybe>>; + explore_wheat_burn_amountLIKE?: InputMaybe; + explore_wheat_burn_amountLT?: InputMaybe; + explore_wheat_burn_amountLTE?: InputMaybe; + explore_wheat_burn_amountNEQ?: InputMaybe; + explore_wheat_burn_amountNOTIN?: InputMaybe>>; + explore_wheat_burn_amountNOTLIKE?: InputMaybe; + travel_fish_burn_amount?: InputMaybe; + travel_fish_burn_amountEQ?: InputMaybe; + travel_fish_burn_amountGT?: InputMaybe; + travel_fish_burn_amountGTE?: InputMaybe; + travel_fish_burn_amountIN?: InputMaybe>>; + travel_fish_burn_amountLIKE?: InputMaybe; + travel_fish_burn_amountLT?: InputMaybe; + travel_fish_burn_amountLTE?: InputMaybe; + travel_fish_burn_amountNEQ?: InputMaybe; + travel_fish_burn_amountNOTIN?: InputMaybe>>; + travel_fish_burn_amountNOTLIKE?: InputMaybe; + travel_wheat_burn_amount?: InputMaybe; + travel_wheat_burn_amountEQ?: InputMaybe; + travel_wheat_burn_amountGT?: InputMaybe; + travel_wheat_burn_amountGTE?: InputMaybe; + travel_wheat_burn_amountIN?: InputMaybe>>; + travel_wheat_burn_amountLIKE?: InputMaybe; + travel_wheat_burn_amountLT?: InputMaybe; + travel_wheat_burn_amountLTE?: InputMaybe; + travel_wheat_burn_amountNEQ?: InputMaybe; + travel_wheat_burn_amountNOTIN?: InputMaybe>>; + travel_wheat_burn_amountNOTLIKE?: InputMaybe; + unit_type?: InputMaybe; + unit_typeEQ?: InputMaybe; + unit_typeGT?: InputMaybe; + unit_typeGTE?: InputMaybe; + unit_typeIN?: InputMaybe>>; + unit_typeLIKE?: InputMaybe; + unit_typeLT?: InputMaybe; + unit_typeLTE?: InputMaybe; + unit_typeNEQ?: InputMaybe; + unit_typeNOTIN?: InputMaybe>>; + unit_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_TravelOrder = { @@ -6567,13 +6567,13 @@ export type S0_Eternum_TravelOrder = { }; export enum S0_Eternum_TravelOrderField { - DestinationCoordX = 'DESTINATION_COORD_X', - DestinationCoordY = 'DESTINATION_COORD_Y', - EntityId = 'ENTITY_ID', - Owner = 'OWNER', - Timestamp = 'TIMESTAMP', - TravelPath = 'TRAVEL_PATH', - TravelTime = 'TRAVEL_TIME' + DestinationCoordX = "DESTINATION_COORD_X", + DestinationCoordY = "DESTINATION_COORD_Y", + EntityId = "ENTITY_ID", + Owner = "OWNER", + Timestamp = "TIMESTAMP", + TravelPath = "TRAVEL_PATH", + TravelTime = "TRAVEL_TIME", } export type S0_Eternum_TravelStaminaCostConfigOrder = { @@ -6582,114 +6582,114 @@ export type S0_Eternum_TravelStaminaCostConfigOrder = { }; export enum S0_Eternum_TravelStaminaCostConfigOrderField { - ConfigId = 'CONFIG_ID', - Cost = 'COST', - TravelType = 'TRAVEL_TYPE' + ConfigId = "CONFIG_ID", + Cost = "COST", + TravelType = "TRAVEL_TYPE", } export type S0_Eternum_TravelStaminaCostConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - cost?: InputMaybe; - costEQ?: InputMaybe; - costGT?: InputMaybe; - costGTE?: InputMaybe; - costIN?: InputMaybe>>; - costLIKE?: InputMaybe; - costLT?: InputMaybe; - costLTE?: InputMaybe; - costNEQ?: InputMaybe; - costNOTIN?: InputMaybe>>; - costNOTLIKE?: InputMaybe; - travel_type?: InputMaybe; - travel_typeEQ?: InputMaybe; - travel_typeGT?: InputMaybe; - travel_typeGTE?: InputMaybe; - travel_typeIN?: InputMaybe>>; - travel_typeLIKE?: InputMaybe; - travel_typeLT?: InputMaybe; - travel_typeLTE?: InputMaybe; - travel_typeNEQ?: InputMaybe; - travel_typeNOTIN?: InputMaybe>>; - travel_typeNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + cost?: InputMaybe; + costEQ?: InputMaybe; + costGT?: InputMaybe; + costGTE?: InputMaybe; + costIN?: InputMaybe>>; + costLIKE?: InputMaybe; + costLT?: InputMaybe; + costLTE?: InputMaybe; + costNEQ?: InputMaybe; + costNOTIN?: InputMaybe>>; + costNOTLIKE?: InputMaybe; + travel_type?: InputMaybe; + travel_typeEQ?: InputMaybe; + travel_typeGT?: InputMaybe; + travel_typeGTE?: InputMaybe; + travel_typeIN?: InputMaybe>>; + travel_typeLIKE?: InputMaybe; + travel_typeLT?: InputMaybe; + travel_typeLTE?: InputMaybe; + travel_typeNEQ?: InputMaybe; + travel_typeNOTIN?: InputMaybe>>; + travel_typeNOTLIKE?: InputMaybe; }; export type S0_Eternum_TravelWhereInput = { - destination_coord_x?: InputMaybe; - destination_coord_xEQ?: InputMaybe; - destination_coord_xGT?: InputMaybe; - destination_coord_xGTE?: InputMaybe; - destination_coord_xIN?: InputMaybe>>; - destination_coord_xLIKE?: InputMaybe; - destination_coord_xLT?: InputMaybe; - destination_coord_xLTE?: InputMaybe; - destination_coord_xNEQ?: InputMaybe; - destination_coord_xNOTIN?: InputMaybe>>; - destination_coord_xNOTLIKE?: InputMaybe; - destination_coord_y?: InputMaybe; - destination_coord_yEQ?: InputMaybe; - destination_coord_yGT?: InputMaybe; - destination_coord_yGTE?: InputMaybe; - destination_coord_yIN?: InputMaybe>>; - destination_coord_yLIKE?: InputMaybe; - destination_coord_yLT?: InputMaybe; - destination_coord_yLTE?: InputMaybe; - destination_coord_yNEQ?: InputMaybe; - destination_coord_yNOTIN?: InputMaybe>>; - destination_coord_yNOTLIKE?: InputMaybe; - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - owner?: InputMaybe; - ownerEQ?: InputMaybe; - ownerGT?: InputMaybe; - ownerGTE?: InputMaybe; - ownerIN?: InputMaybe>>; - ownerLIKE?: InputMaybe; - ownerLT?: InputMaybe; - ownerLTE?: InputMaybe; - ownerNEQ?: InputMaybe; - ownerNOTIN?: InputMaybe>>; - ownerNOTLIKE?: InputMaybe; - timestamp?: InputMaybe; - timestampEQ?: InputMaybe; - timestampGT?: InputMaybe; - timestampGTE?: InputMaybe; - timestampIN?: InputMaybe>>; - timestampLIKE?: InputMaybe; - timestampLT?: InputMaybe; - timestampLTE?: InputMaybe; - timestampNEQ?: InputMaybe; - timestampNOTIN?: InputMaybe>>; - timestampNOTLIKE?: InputMaybe; - travel_time?: InputMaybe; - travel_timeEQ?: InputMaybe; - travel_timeGT?: InputMaybe; - travel_timeGTE?: InputMaybe; - travel_timeIN?: InputMaybe>>; - travel_timeLIKE?: InputMaybe; - travel_timeLT?: InputMaybe; - travel_timeLTE?: InputMaybe; - travel_timeNEQ?: InputMaybe; - travel_timeNOTIN?: InputMaybe>>; - travel_timeNOTLIKE?: InputMaybe; + destination_coord_x?: InputMaybe; + destination_coord_xEQ?: InputMaybe; + destination_coord_xGT?: InputMaybe; + destination_coord_xGTE?: InputMaybe; + destination_coord_xIN?: InputMaybe>>; + destination_coord_xLIKE?: InputMaybe; + destination_coord_xLT?: InputMaybe; + destination_coord_xLTE?: InputMaybe; + destination_coord_xNEQ?: InputMaybe; + destination_coord_xNOTIN?: InputMaybe>>; + destination_coord_xNOTLIKE?: InputMaybe; + destination_coord_y?: InputMaybe; + destination_coord_yEQ?: InputMaybe; + destination_coord_yGT?: InputMaybe; + destination_coord_yGTE?: InputMaybe; + destination_coord_yIN?: InputMaybe>>; + destination_coord_yLIKE?: InputMaybe; + destination_coord_yLT?: InputMaybe; + destination_coord_yLTE?: InputMaybe; + destination_coord_yNEQ?: InputMaybe; + destination_coord_yNOTIN?: InputMaybe>>; + destination_coord_yNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + owner?: InputMaybe; + ownerEQ?: InputMaybe; + ownerGT?: InputMaybe; + ownerGTE?: InputMaybe; + ownerIN?: InputMaybe>>; + ownerLIKE?: InputMaybe; + ownerLT?: InputMaybe; + ownerLTE?: InputMaybe; + ownerNEQ?: InputMaybe; + ownerNOTIN?: InputMaybe>>; + ownerNOTLIKE?: InputMaybe; + timestamp?: InputMaybe; + timestampEQ?: InputMaybe; + timestampGT?: InputMaybe; + timestampGTE?: InputMaybe; + timestampIN?: InputMaybe>>; + timestampLIKE?: InputMaybe; + timestampLT?: InputMaybe; + timestampLTE?: InputMaybe; + timestampNEQ?: InputMaybe; + timestampNOTIN?: InputMaybe>>; + timestampNOTLIKE?: InputMaybe; + travel_time?: InputMaybe; + travel_timeEQ?: InputMaybe; + travel_timeGT?: InputMaybe; + travel_timeGTE?: InputMaybe; + travel_timeIN?: InputMaybe>>; + travel_timeLIKE?: InputMaybe; + travel_timeLT?: InputMaybe; + travel_timeLTE?: InputMaybe; + travel_timeNEQ?: InputMaybe; + travel_timeNOTIN?: InputMaybe>>; + travel_timeNOTLIKE?: InputMaybe; }; export type S0_Eternum_TroopConfigOrder = { @@ -6698,201 +6698,201 @@ export type S0_Eternum_TroopConfigOrder = { }; export enum S0_Eternum_TroopConfigOrderField { - AdvantagePercent = 'ADVANTAGE_PERCENT', - ArmyExtraPerBuilding = 'ARMY_EXTRA_PER_BUILDING', - ArmyFreePerStructure = 'ARMY_FREE_PER_STRUCTURE', - ArmyMaxPerStructure = 'ARMY_MAX_PER_STRUCTURE', - BattleLeaveSlashDenom = 'BATTLE_LEAVE_SLASH_DENOM', - BattleLeaveSlashNum = 'BATTLE_LEAVE_SLASH_NUM', - BattleMaxTimeSeconds = 'BATTLE_MAX_TIME_SECONDS', - BattleTimeScale = 'BATTLE_TIME_SCALE', - ConfigId = 'CONFIG_ID', - CrossbowmanStrength = 'CROSSBOWMAN_STRENGTH', - DisadvantagePercent = 'DISADVANTAGE_PERCENT', - Health = 'HEALTH', - KnightStrength = 'KNIGHT_STRENGTH', - MaxTroopCount = 'MAX_TROOP_COUNT', - PaladinStrength = 'PALADIN_STRENGTH', - PillageHealthDivisor = 'PILLAGE_HEALTH_DIVISOR' + AdvantagePercent = "ADVANTAGE_PERCENT", + ArmyExtraPerBuilding = "ARMY_EXTRA_PER_BUILDING", + ArmyFreePerStructure = "ARMY_FREE_PER_STRUCTURE", + ArmyMaxPerStructure = "ARMY_MAX_PER_STRUCTURE", + BattleLeaveSlashDenom = "BATTLE_LEAVE_SLASH_DENOM", + BattleLeaveSlashNum = "BATTLE_LEAVE_SLASH_NUM", + BattleMaxTimeSeconds = "BATTLE_MAX_TIME_SECONDS", + BattleTimeScale = "BATTLE_TIME_SCALE", + ConfigId = "CONFIG_ID", + CrossbowmanStrength = "CROSSBOWMAN_STRENGTH", + DisadvantagePercent = "DISADVANTAGE_PERCENT", + Health = "HEALTH", + KnightStrength = "KNIGHT_STRENGTH", + MaxTroopCount = "MAX_TROOP_COUNT", + PaladinStrength = "PALADIN_STRENGTH", + PillageHealthDivisor = "PILLAGE_HEALTH_DIVISOR", } export type S0_Eternum_TroopConfigWhereInput = { - advantage_percent?: InputMaybe; - advantage_percentEQ?: InputMaybe; - advantage_percentGT?: InputMaybe; - advantage_percentGTE?: InputMaybe; - advantage_percentIN?: InputMaybe>>; - advantage_percentLIKE?: InputMaybe; - advantage_percentLT?: InputMaybe; - advantage_percentLTE?: InputMaybe; - advantage_percentNEQ?: InputMaybe; - advantage_percentNOTIN?: InputMaybe>>; - advantage_percentNOTLIKE?: InputMaybe; - army_extra_per_building?: InputMaybe; - army_extra_per_buildingEQ?: InputMaybe; - army_extra_per_buildingGT?: InputMaybe; - army_extra_per_buildingGTE?: InputMaybe; - army_extra_per_buildingIN?: InputMaybe>>; - army_extra_per_buildingLIKE?: InputMaybe; - army_extra_per_buildingLT?: InputMaybe; - army_extra_per_buildingLTE?: InputMaybe; - army_extra_per_buildingNEQ?: InputMaybe; - army_extra_per_buildingNOTIN?: InputMaybe>>; - army_extra_per_buildingNOTLIKE?: InputMaybe; - army_free_per_structure?: InputMaybe; - army_free_per_structureEQ?: InputMaybe; - army_free_per_structureGT?: InputMaybe; - army_free_per_structureGTE?: InputMaybe; - army_free_per_structureIN?: InputMaybe>>; - army_free_per_structureLIKE?: InputMaybe; - army_free_per_structureLT?: InputMaybe; - army_free_per_structureLTE?: InputMaybe; - army_free_per_structureNEQ?: InputMaybe; - army_free_per_structureNOTIN?: InputMaybe>>; - army_free_per_structureNOTLIKE?: InputMaybe; - army_max_per_structure?: InputMaybe; - army_max_per_structureEQ?: InputMaybe; - army_max_per_structureGT?: InputMaybe; - army_max_per_structureGTE?: InputMaybe; - army_max_per_structureIN?: InputMaybe>>; - army_max_per_structureLIKE?: InputMaybe; - army_max_per_structureLT?: InputMaybe; - army_max_per_structureLTE?: InputMaybe; - army_max_per_structureNEQ?: InputMaybe; - army_max_per_structureNOTIN?: InputMaybe>>; - army_max_per_structureNOTLIKE?: InputMaybe; - battle_leave_slash_denom?: InputMaybe; - battle_leave_slash_denomEQ?: InputMaybe; - battle_leave_slash_denomGT?: InputMaybe; - battle_leave_slash_denomGTE?: InputMaybe; - battle_leave_slash_denomIN?: InputMaybe>>; - battle_leave_slash_denomLIKE?: InputMaybe; - battle_leave_slash_denomLT?: InputMaybe; - battle_leave_slash_denomLTE?: InputMaybe; - battle_leave_slash_denomNEQ?: InputMaybe; - battle_leave_slash_denomNOTIN?: InputMaybe>>; - battle_leave_slash_denomNOTLIKE?: InputMaybe; - battle_leave_slash_num?: InputMaybe; - battle_leave_slash_numEQ?: InputMaybe; - battle_leave_slash_numGT?: InputMaybe; - battle_leave_slash_numGTE?: InputMaybe; - battle_leave_slash_numIN?: InputMaybe>>; - battle_leave_slash_numLIKE?: InputMaybe; - battle_leave_slash_numLT?: InputMaybe; - battle_leave_slash_numLTE?: InputMaybe; - battle_leave_slash_numNEQ?: InputMaybe; - battle_leave_slash_numNOTIN?: InputMaybe>>; - battle_leave_slash_numNOTLIKE?: InputMaybe; - battle_max_time_seconds?: InputMaybe; - battle_max_time_secondsEQ?: InputMaybe; - battle_max_time_secondsGT?: InputMaybe; - battle_max_time_secondsGTE?: InputMaybe; - battle_max_time_secondsIN?: InputMaybe>>; - battle_max_time_secondsLIKE?: InputMaybe; - battle_max_time_secondsLT?: InputMaybe; - battle_max_time_secondsLTE?: InputMaybe; - battle_max_time_secondsNEQ?: InputMaybe; - battle_max_time_secondsNOTIN?: InputMaybe>>; - battle_max_time_secondsNOTLIKE?: InputMaybe; - battle_time_scale?: InputMaybe; - battle_time_scaleEQ?: InputMaybe; - battle_time_scaleGT?: InputMaybe; - battle_time_scaleGTE?: InputMaybe; - battle_time_scaleIN?: InputMaybe>>; - battle_time_scaleLIKE?: InputMaybe; - battle_time_scaleLT?: InputMaybe; - battle_time_scaleLTE?: InputMaybe; - battle_time_scaleNEQ?: InputMaybe; - battle_time_scaleNOTIN?: InputMaybe>>; - battle_time_scaleNOTLIKE?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - crossbowman_strength?: InputMaybe; - crossbowman_strengthEQ?: InputMaybe; - crossbowman_strengthGT?: InputMaybe; - crossbowman_strengthGTE?: InputMaybe; - crossbowman_strengthIN?: InputMaybe>>; - crossbowman_strengthLIKE?: InputMaybe; - crossbowman_strengthLT?: InputMaybe; - crossbowman_strengthLTE?: InputMaybe; - crossbowman_strengthNEQ?: InputMaybe; - crossbowman_strengthNOTIN?: InputMaybe>>; - crossbowman_strengthNOTLIKE?: InputMaybe; - disadvantage_percent?: InputMaybe; - disadvantage_percentEQ?: InputMaybe; - disadvantage_percentGT?: InputMaybe; - disadvantage_percentGTE?: InputMaybe; - disadvantage_percentIN?: InputMaybe>>; - disadvantage_percentLIKE?: InputMaybe; - disadvantage_percentLT?: InputMaybe; - disadvantage_percentLTE?: InputMaybe; - disadvantage_percentNEQ?: InputMaybe; - disadvantage_percentNOTIN?: InputMaybe>>; - disadvantage_percentNOTLIKE?: InputMaybe; - health?: InputMaybe; - healthEQ?: InputMaybe; - healthGT?: InputMaybe; - healthGTE?: InputMaybe; - healthIN?: InputMaybe>>; - healthLIKE?: InputMaybe; - healthLT?: InputMaybe; - healthLTE?: InputMaybe; - healthNEQ?: InputMaybe; - healthNOTIN?: InputMaybe>>; - healthNOTLIKE?: InputMaybe; - knight_strength?: InputMaybe; - knight_strengthEQ?: InputMaybe; - knight_strengthGT?: InputMaybe; - knight_strengthGTE?: InputMaybe; - knight_strengthIN?: InputMaybe>>; - knight_strengthLIKE?: InputMaybe; - knight_strengthLT?: InputMaybe; - knight_strengthLTE?: InputMaybe; - knight_strengthNEQ?: InputMaybe; - knight_strengthNOTIN?: InputMaybe>>; - knight_strengthNOTLIKE?: InputMaybe; - max_troop_count?: InputMaybe; - max_troop_countEQ?: InputMaybe; - max_troop_countGT?: InputMaybe; - max_troop_countGTE?: InputMaybe; - max_troop_countIN?: InputMaybe>>; - max_troop_countLIKE?: InputMaybe; - max_troop_countLT?: InputMaybe; - max_troop_countLTE?: InputMaybe; - max_troop_countNEQ?: InputMaybe; - max_troop_countNOTIN?: InputMaybe>>; - max_troop_countNOTLIKE?: InputMaybe; - paladin_strength?: InputMaybe; - paladin_strengthEQ?: InputMaybe; - paladin_strengthGT?: InputMaybe; - paladin_strengthGTE?: InputMaybe; - paladin_strengthIN?: InputMaybe>>; - paladin_strengthLIKE?: InputMaybe; - paladin_strengthLT?: InputMaybe; - paladin_strengthLTE?: InputMaybe; - paladin_strengthNEQ?: InputMaybe; - paladin_strengthNOTIN?: InputMaybe>>; - paladin_strengthNOTLIKE?: InputMaybe; - pillage_health_divisor?: InputMaybe; - pillage_health_divisorEQ?: InputMaybe; - pillage_health_divisorGT?: InputMaybe; - pillage_health_divisorGTE?: InputMaybe; - pillage_health_divisorIN?: InputMaybe>>; - pillage_health_divisorLIKE?: InputMaybe; - pillage_health_divisorLT?: InputMaybe; - pillage_health_divisorLTE?: InputMaybe; - pillage_health_divisorNEQ?: InputMaybe; - pillage_health_divisorNOTIN?: InputMaybe>>; - pillage_health_divisorNOTLIKE?: InputMaybe; + advantage_percent?: InputMaybe; + advantage_percentEQ?: InputMaybe; + advantage_percentGT?: InputMaybe; + advantage_percentGTE?: InputMaybe; + advantage_percentIN?: InputMaybe>>; + advantage_percentLIKE?: InputMaybe; + advantage_percentLT?: InputMaybe; + advantage_percentLTE?: InputMaybe; + advantage_percentNEQ?: InputMaybe; + advantage_percentNOTIN?: InputMaybe>>; + advantage_percentNOTLIKE?: InputMaybe; + army_extra_per_building?: InputMaybe; + army_extra_per_buildingEQ?: InputMaybe; + army_extra_per_buildingGT?: InputMaybe; + army_extra_per_buildingGTE?: InputMaybe; + army_extra_per_buildingIN?: InputMaybe>>; + army_extra_per_buildingLIKE?: InputMaybe; + army_extra_per_buildingLT?: InputMaybe; + army_extra_per_buildingLTE?: InputMaybe; + army_extra_per_buildingNEQ?: InputMaybe; + army_extra_per_buildingNOTIN?: InputMaybe>>; + army_extra_per_buildingNOTLIKE?: InputMaybe; + army_free_per_structure?: InputMaybe; + army_free_per_structureEQ?: InputMaybe; + army_free_per_structureGT?: InputMaybe; + army_free_per_structureGTE?: InputMaybe; + army_free_per_structureIN?: InputMaybe>>; + army_free_per_structureLIKE?: InputMaybe; + army_free_per_structureLT?: InputMaybe; + army_free_per_structureLTE?: InputMaybe; + army_free_per_structureNEQ?: InputMaybe; + army_free_per_structureNOTIN?: InputMaybe>>; + army_free_per_structureNOTLIKE?: InputMaybe; + army_max_per_structure?: InputMaybe; + army_max_per_structureEQ?: InputMaybe; + army_max_per_structureGT?: InputMaybe; + army_max_per_structureGTE?: InputMaybe; + army_max_per_structureIN?: InputMaybe>>; + army_max_per_structureLIKE?: InputMaybe; + army_max_per_structureLT?: InputMaybe; + army_max_per_structureLTE?: InputMaybe; + army_max_per_structureNEQ?: InputMaybe; + army_max_per_structureNOTIN?: InputMaybe>>; + army_max_per_structureNOTLIKE?: InputMaybe; + battle_leave_slash_denom?: InputMaybe; + battle_leave_slash_denomEQ?: InputMaybe; + battle_leave_slash_denomGT?: InputMaybe; + battle_leave_slash_denomGTE?: InputMaybe; + battle_leave_slash_denomIN?: InputMaybe>>; + battle_leave_slash_denomLIKE?: InputMaybe; + battle_leave_slash_denomLT?: InputMaybe; + battle_leave_slash_denomLTE?: InputMaybe; + battle_leave_slash_denomNEQ?: InputMaybe; + battle_leave_slash_denomNOTIN?: InputMaybe>>; + battle_leave_slash_denomNOTLIKE?: InputMaybe; + battle_leave_slash_num?: InputMaybe; + battle_leave_slash_numEQ?: InputMaybe; + battle_leave_slash_numGT?: InputMaybe; + battle_leave_slash_numGTE?: InputMaybe; + battle_leave_slash_numIN?: InputMaybe>>; + battle_leave_slash_numLIKE?: InputMaybe; + battle_leave_slash_numLT?: InputMaybe; + battle_leave_slash_numLTE?: InputMaybe; + battle_leave_slash_numNEQ?: InputMaybe; + battle_leave_slash_numNOTIN?: InputMaybe>>; + battle_leave_slash_numNOTLIKE?: InputMaybe; + battle_max_time_seconds?: InputMaybe; + battle_max_time_secondsEQ?: InputMaybe; + battle_max_time_secondsGT?: InputMaybe; + battle_max_time_secondsGTE?: InputMaybe; + battle_max_time_secondsIN?: InputMaybe>>; + battle_max_time_secondsLIKE?: InputMaybe; + battle_max_time_secondsLT?: InputMaybe; + battle_max_time_secondsLTE?: InputMaybe; + battle_max_time_secondsNEQ?: InputMaybe; + battle_max_time_secondsNOTIN?: InputMaybe>>; + battle_max_time_secondsNOTLIKE?: InputMaybe; + battle_time_scale?: InputMaybe; + battle_time_scaleEQ?: InputMaybe; + battle_time_scaleGT?: InputMaybe; + battle_time_scaleGTE?: InputMaybe; + battle_time_scaleIN?: InputMaybe>>; + battle_time_scaleLIKE?: InputMaybe; + battle_time_scaleLT?: InputMaybe; + battle_time_scaleLTE?: InputMaybe; + battle_time_scaleNEQ?: InputMaybe; + battle_time_scaleNOTIN?: InputMaybe>>; + battle_time_scaleNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + crossbowman_strength?: InputMaybe; + crossbowman_strengthEQ?: InputMaybe; + crossbowman_strengthGT?: InputMaybe; + crossbowman_strengthGTE?: InputMaybe; + crossbowman_strengthIN?: InputMaybe>>; + crossbowman_strengthLIKE?: InputMaybe; + crossbowman_strengthLT?: InputMaybe; + crossbowman_strengthLTE?: InputMaybe; + crossbowman_strengthNEQ?: InputMaybe; + crossbowman_strengthNOTIN?: InputMaybe>>; + crossbowman_strengthNOTLIKE?: InputMaybe; + disadvantage_percent?: InputMaybe; + disadvantage_percentEQ?: InputMaybe; + disadvantage_percentGT?: InputMaybe; + disadvantage_percentGTE?: InputMaybe; + disadvantage_percentIN?: InputMaybe>>; + disadvantage_percentLIKE?: InputMaybe; + disadvantage_percentLT?: InputMaybe; + disadvantage_percentLTE?: InputMaybe; + disadvantage_percentNEQ?: InputMaybe; + disadvantage_percentNOTIN?: InputMaybe>>; + disadvantage_percentNOTLIKE?: InputMaybe; + health?: InputMaybe; + healthEQ?: InputMaybe; + healthGT?: InputMaybe; + healthGTE?: InputMaybe; + healthIN?: InputMaybe>>; + healthLIKE?: InputMaybe; + healthLT?: InputMaybe; + healthLTE?: InputMaybe; + healthNEQ?: InputMaybe; + healthNOTIN?: InputMaybe>>; + healthNOTLIKE?: InputMaybe; + knight_strength?: InputMaybe; + knight_strengthEQ?: InputMaybe; + knight_strengthGT?: InputMaybe; + knight_strengthGTE?: InputMaybe; + knight_strengthIN?: InputMaybe>>; + knight_strengthLIKE?: InputMaybe; + knight_strengthLT?: InputMaybe; + knight_strengthLTE?: InputMaybe; + knight_strengthNEQ?: InputMaybe; + knight_strengthNOTIN?: InputMaybe>>; + knight_strengthNOTLIKE?: InputMaybe; + max_troop_count?: InputMaybe; + max_troop_countEQ?: InputMaybe; + max_troop_countGT?: InputMaybe; + max_troop_countGTE?: InputMaybe; + max_troop_countIN?: InputMaybe>>; + max_troop_countLIKE?: InputMaybe; + max_troop_countLT?: InputMaybe; + max_troop_countLTE?: InputMaybe; + max_troop_countNEQ?: InputMaybe; + max_troop_countNOTIN?: InputMaybe>>; + max_troop_countNOTLIKE?: InputMaybe; + paladin_strength?: InputMaybe; + paladin_strengthEQ?: InputMaybe; + paladin_strengthGT?: InputMaybe; + paladin_strengthGTE?: InputMaybe; + paladin_strengthIN?: InputMaybe>>; + paladin_strengthLIKE?: InputMaybe; + paladin_strengthLT?: InputMaybe; + paladin_strengthLTE?: InputMaybe; + paladin_strengthNEQ?: InputMaybe; + paladin_strengthNOTIN?: InputMaybe>>; + paladin_strengthNOTLIKE?: InputMaybe; + pillage_health_divisor?: InputMaybe; + pillage_health_divisorEQ?: InputMaybe; + pillage_health_divisorGT?: InputMaybe; + pillage_health_divisorGTE?: InputMaybe; + pillage_health_divisorIN?: InputMaybe>>; + pillage_health_divisorLIKE?: InputMaybe; + pillage_health_divisorLT?: InputMaybe; + pillage_health_divisorLTE?: InputMaybe; + pillage_health_divisorNEQ?: InputMaybe; + pillage_health_divisorNOTIN?: InputMaybe>>; + pillage_health_divisorNOTLIKE?: InputMaybe; }; export type S0_Eternum_TrophyCreationOrder = { @@ -6901,132 +6901,132 @@ export type S0_Eternum_TrophyCreationOrder = { }; export enum S0_Eternum_TrophyCreationOrderField { - Data = 'DATA', - Description = 'DESCRIPTION', - End = 'END', - Group = 'GROUP', - Hidden = 'HIDDEN', - Icon = 'ICON', - Id = 'ID', - Index = 'INDEX', - Points = 'POINTS', - Start = 'START', - Tasks = 'TASKS', - Title = 'TITLE' + Data = "DATA", + Description = "DESCRIPTION", + End = "END", + Group = "GROUP", + Hidden = "HIDDEN", + Icon = "ICON", + Id = "ID", + Index = "INDEX", + Points = "POINTS", + Start = "START", + Tasks = "TASKS", + Title = "TITLE", } export type S0_Eternum_TrophyCreationWhereInput = { - data?: InputMaybe; - dataEQ?: InputMaybe; - dataGT?: InputMaybe; - dataGTE?: InputMaybe; - dataIN?: InputMaybe>>; - dataLIKE?: InputMaybe; - dataLT?: InputMaybe; - dataLTE?: InputMaybe; - dataNEQ?: InputMaybe; - dataNOTIN?: InputMaybe>>; - dataNOTLIKE?: InputMaybe; - description?: InputMaybe; - descriptionEQ?: InputMaybe; - descriptionGT?: InputMaybe; - descriptionGTE?: InputMaybe; - descriptionIN?: InputMaybe>>; - descriptionLIKE?: InputMaybe; - descriptionLT?: InputMaybe; - descriptionLTE?: InputMaybe; - descriptionNEQ?: InputMaybe; - descriptionNOTIN?: InputMaybe>>; - descriptionNOTLIKE?: InputMaybe; - end?: InputMaybe; - endEQ?: InputMaybe; - endGT?: InputMaybe; - endGTE?: InputMaybe; - endIN?: InputMaybe>>; - endLIKE?: InputMaybe; - endLT?: InputMaybe; - endLTE?: InputMaybe; - endNEQ?: InputMaybe; - endNOTIN?: InputMaybe>>; - endNOTLIKE?: InputMaybe; - group?: InputMaybe; - groupEQ?: InputMaybe; - groupGT?: InputMaybe; - groupGTE?: InputMaybe; - groupIN?: InputMaybe>>; - groupLIKE?: InputMaybe; - groupLT?: InputMaybe; - groupLTE?: InputMaybe; - groupNEQ?: InputMaybe; - groupNOTIN?: InputMaybe>>; - groupNOTLIKE?: InputMaybe; - hidden?: InputMaybe; - icon?: InputMaybe; - iconEQ?: InputMaybe; - iconGT?: InputMaybe; - iconGTE?: InputMaybe; - iconIN?: InputMaybe>>; - iconLIKE?: InputMaybe; - iconLT?: InputMaybe; - iconLTE?: InputMaybe; - iconNEQ?: InputMaybe; - iconNOTIN?: InputMaybe>>; - iconNOTLIKE?: InputMaybe; - id?: InputMaybe; - idEQ?: InputMaybe; - idGT?: InputMaybe; - idGTE?: InputMaybe; - idIN?: InputMaybe>>; - idLIKE?: InputMaybe; - idLT?: InputMaybe; - idLTE?: InputMaybe; - idNEQ?: InputMaybe; - idNOTIN?: InputMaybe>>; - idNOTLIKE?: InputMaybe; - index?: InputMaybe; - indexEQ?: InputMaybe; - indexGT?: InputMaybe; - indexGTE?: InputMaybe; - indexIN?: InputMaybe>>; - indexLIKE?: InputMaybe; - indexLT?: InputMaybe; - indexLTE?: InputMaybe; - indexNEQ?: InputMaybe; - indexNOTIN?: InputMaybe>>; - indexNOTLIKE?: InputMaybe; - points?: InputMaybe; - pointsEQ?: InputMaybe; - pointsGT?: InputMaybe; - pointsGTE?: InputMaybe; - pointsIN?: InputMaybe>>; - pointsLIKE?: InputMaybe; - pointsLT?: InputMaybe; - pointsLTE?: InputMaybe; - pointsNEQ?: InputMaybe; - pointsNOTIN?: InputMaybe>>; - pointsNOTLIKE?: InputMaybe; - start?: InputMaybe; - startEQ?: InputMaybe; - startGT?: InputMaybe; - startGTE?: InputMaybe; - startIN?: InputMaybe>>; - startLIKE?: InputMaybe; - startLT?: InputMaybe; - startLTE?: InputMaybe; - startNEQ?: InputMaybe; - startNOTIN?: InputMaybe>>; - startNOTLIKE?: InputMaybe; - title?: InputMaybe; - titleEQ?: InputMaybe; - titleGT?: InputMaybe; - titleGTE?: InputMaybe; - titleIN?: InputMaybe>>; - titleLIKE?: InputMaybe; - titleLT?: InputMaybe; - titleLTE?: InputMaybe; - titleNEQ?: InputMaybe; - titleNOTIN?: InputMaybe>>; - titleNOTLIKE?: InputMaybe; + data?: InputMaybe; + dataEQ?: InputMaybe; + dataGT?: InputMaybe; + dataGTE?: InputMaybe; + dataIN?: InputMaybe>>; + dataLIKE?: InputMaybe; + dataLT?: InputMaybe; + dataLTE?: InputMaybe; + dataNEQ?: InputMaybe; + dataNOTIN?: InputMaybe>>; + dataNOTLIKE?: InputMaybe; + description?: InputMaybe; + descriptionEQ?: InputMaybe; + descriptionGT?: InputMaybe; + descriptionGTE?: InputMaybe; + descriptionIN?: InputMaybe>>; + descriptionLIKE?: InputMaybe; + descriptionLT?: InputMaybe; + descriptionLTE?: InputMaybe; + descriptionNEQ?: InputMaybe; + descriptionNOTIN?: InputMaybe>>; + descriptionNOTLIKE?: InputMaybe; + end?: InputMaybe; + endEQ?: InputMaybe; + endGT?: InputMaybe; + endGTE?: InputMaybe; + endIN?: InputMaybe>>; + endLIKE?: InputMaybe; + endLT?: InputMaybe; + endLTE?: InputMaybe; + endNEQ?: InputMaybe; + endNOTIN?: InputMaybe>>; + endNOTLIKE?: InputMaybe; + group?: InputMaybe; + groupEQ?: InputMaybe; + groupGT?: InputMaybe; + groupGTE?: InputMaybe; + groupIN?: InputMaybe>>; + groupLIKE?: InputMaybe; + groupLT?: InputMaybe; + groupLTE?: InputMaybe; + groupNEQ?: InputMaybe; + groupNOTIN?: InputMaybe>>; + groupNOTLIKE?: InputMaybe; + hidden?: InputMaybe; + icon?: InputMaybe; + iconEQ?: InputMaybe; + iconGT?: InputMaybe; + iconGTE?: InputMaybe; + iconIN?: InputMaybe>>; + iconLIKE?: InputMaybe; + iconLT?: InputMaybe; + iconLTE?: InputMaybe; + iconNEQ?: InputMaybe; + iconNOTIN?: InputMaybe>>; + iconNOTLIKE?: InputMaybe; + id?: InputMaybe; + idEQ?: InputMaybe; + idGT?: InputMaybe; + idGTE?: InputMaybe; + idIN?: InputMaybe>>; + idLIKE?: InputMaybe; + idLT?: InputMaybe; + idLTE?: InputMaybe; + idNEQ?: InputMaybe; + idNOTIN?: InputMaybe>>; + idNOTLIKE?: InputMaybe; + index?: InputMaybe; + indexEQ?: InputMaybe; + indexGT?: InputMaybe; + indexGTE?: InputMaybe; + indexIN?: InputMaybe>>; + indexLIKE?: InputMaybe; + indexLT?: InputMaybe; + indexLTE?: InputMaybe; + indexNEQ?: InputMaybe; + indexNOTIN?: InputMaybe>>; + indexNOTLIKE?: InputMaybe; + points?: InputMaybe; + pointsEQ?: InputMaybe; + pointsGT?: InputMaybe; + pointsGTE?: InputMaybe; + pointsIN?: InputMaybe>>; + pointsLIKE?: InputMaybe; + pointsLT?: InputMaybe; + pointsLTE?: InputMaybe; + pointsNEQ?: InputMaybe; + pointsNOTIN?: InputMaybe>>; + pointsNOTLIKE?: InputMaybe; + start?: InputMaybe; + startEQ?: InputMaybe; + startGT?: InputMaybe; + startGTE?: InputMaybe; + startIN?: InputMaybe>>; + startLIKE?: InputMaybe; + startLT?: InputMaybe; + startLTE?: InputMaybe; + startNEQ?: InputMaybe; + startNOTIN?: InputMaybe>>; + startNOTLIKE?: InputMaybe; + title?: InputMaybe; + titleEQ?: InputMaybe; + titleGT?: InputMaybe; + titleGTE?: InputMaybe; + titleIN?: InputMaybe>>; + titleLIKE?: InputMaybe; + titleLT?: InputMaybe; + titleLTE?: InputMaybe; + titleNEQ?: InputMaybe; + titleNOTIN?: InputMaybe>>; + titleNOTLIKE?: InputMaybe; }; export type S0_Eternum_TrophyProgressionOrder = { @@ -7035,57 +7035,57 @@ export type S0_Eternum_TrophyProgressionOrder = { }; export enum S0_Eternum_TrophyProgressionOrderField { - Count = 'COUNT', - PlayerId = 'PLAYER_ID', - TaskId = 'TASK_ID', - Time = 'TIME' + Count = "COUNT", + PlayerId = "PLAYER_ID", + TaskId = "TASK_ID", + Time = "TIME", } export type S0_Eternum_TrophyProgressionWhereInput = { - count?: InputMaybe; - countEQ?: InputMaybe; - countGT?: InputMaybe; - countGTE?: InputMaybe; - countIN?: InputMaybe>>; - countLIKE?: InputMaybe; - countLT?: InputMaybe; - countLTE?: InputMaybe; - countNEQ?: InputMaybe; - countNOTIN?: InputMaybe>>; - countNOTLIKE?: InputMaybe; - player_id?: InputMaybe; - player_idEQ?: InputMaybe; - player_idGT?: InputMaybe; - player_idGTE?: InputMaybe; - player_idIN?: InputMaybe>>; - player_idLIKE?: InputMaybe; - player_idLT?: InputMaybe; - player_idLTE?: InputMaybe; - player_idNEQ?: InputMaybe; - player_idNOTIN?: InputMaybe>>; - player_idNOTLIKE?: InputMaybe; - task_id?: InputMaybe; - task_idEQ?: InputMaybe; - task_idGT?: InputMaybe; - task_idGTE?: InputMaybe; - task_idIN?: InputMaybe>>; - task_idLIKE?: InputMaybe; - task_idLT?: InputMaybe; - task_idLTE?: InputMaybe; - task_idNEQ?: InputMaybe; - task_idNOTIN?: InputMaybe>>; - task_idNOTLIKE?: InputMaybe; - time?: InputMaybe; - timeEQ?: InputMaybe; - timeGT?: InputMaybe; - timeGTE?: InputMaybe; - timeIN?: InputMaybe>>; - timeLIKE?: InputMaybe; - timeLT?: InputMaybe; - timeLTE?: InputMaybe; - timeNEQ?: InputMaybe; - timeNOTIN?: InputMaybe>>; - timeNOTLIKE?: InputMaybe; + count?: InputMaybe; + countEQ?: InputMaybe; + countGT?: InputMaybe; + countGTE?: InputMaybe; + countIN?: InputMaybe>>; + countLIKE?: InputMaybe; + countLT?: InputMaybe; + countLTE?: InputMaybe; + countNEQ?: InputMaybe; + countNOTIN?: InputMaybe>>; + countNOTLIKE?: InputMaybe; + player_id?: InputMaybe; + player_idEQ?: InputMaybe; + player_idGT?: InputMaybe; + player_idGTE?: InputMaybe; + player_idIN?: InputMaybe>>; + player_idLIKE?: InputMaybe; + player_idLT?: InputMaybe; + player_idLTE?: InputMaybe; + player_idNEQ?: InputMaybe; + player_idNOTIN?: InputMaybe>>; + player_idNOTLIKE?: InputMaybe; + task_id?: InputMaybe; + task_idEQ?: InputMaybe; + task_idGT?: InputMaybe; + task_idGTE?: InputMaybe; + task_idIN?: InputMaybe>>; + task_idLIKE?: InputMaybe; + task_idLT?: InputMaybe; + task_idLTE?: InputMaybe; + task_idNEQ?: InputMaybe; + task_idNOTIN?: InputMaybe>>; + task_idNOTLIKE?: InputMaybe; + time?: InputMaybe; + timeEQ?: InputMaybe; + timeGT?: InputMaybe; + timeGTE?: InputMaybe; + timeIN?: InputMaybe>>; + timeLIKE?: InputMaybe; + timeLT?: InputMaybe; + timeLTE?: InputMaybe; + timeNEQ?: InputMaybe; + timeNOTIN?: InputMaybe>>; + timeNOTLIKE?: InputMaybe; }; export type S0_Eternum_VrfConfigOrder = { @@ -7094,33 +7094,33 @@ export type S0_Eternum_VrfConfigOrder = { }; export enum S0_Eternum_VrfConfigOrderField { - ConfigId = 'CONFIG_ID', - VrfProviderAddress = 'VRF_PROVIDER_ADDRESS' + ConfigId = "CONFIG_ID", + VrfProviderAddress = "VRF_PROVIDER_ADDRESS", } export type S0_Eternum_VrfConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - vrf_provider_address?: InputMaybe; - vrf_provider_addressEQ?: InputMaybe; - vrf_provider_addressGT?: InputMaybe; - vrf_provider_addressGTE?: InputMaybe; - vrf_provider_addressIN?: InputMaybe>>; - vrf_provider_addressLIKE?: InputMaybe; - vrf_provider_addressLT?: InputMaybe; - vrf_provider_addressLTE?: InputMaybe; - vrf_provider_addressNEQ?: InputMaybe; - vrf_provider_addressNOTIN?: InputMaybe>>; - vrf_provider_addressNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + vrf_provider_address?: InputMaybe; + vrf_provider_addressEQ?: InputMaybe; + vrf_provider_addressGT?: InputMaybe; + vrf_provider_addressGTE?: InputMaybe; + vrf_provider_addressIN?: InputMaybe>>; + vrf_provider_addressLIKE?: InputMaybe; + vrf_provider_addressLT?: InputMaybe; + vrf_provider_addressLTE?: InputMaybe; + vrf_provider_addressNEQ?: InputMaybe; + vrf_provider_addressNOTIN?: InputMaybe>>; + vrf_provider_addressNOTLIKE?: InputMaybe; }; export type S0_Eternum_WeightConfigOrder = { @@ -7129,57 +7129,57 @@ export type S0_Eternum_WeightConfigOrder = { }; export enum S0_Eternum_WeightConfigOrderField { - ConfigId = 'CONFIG_ID', - EntityType = 'ENTITY_TYPE', - WeightConfigId = 'WEIGHT_CONFIG_ID', - WeightGram = 'WEIGHT_GRAM' + ConfigId = "CONFIG_ID", + EntityType = "ENTITY_TYPE", + WeightConfigId = "WEIGHT_CONFIG_ID", + WeightGram = "WEIGHT_GRAM", } export type S0_Eternum_WeightConfigWhereInput = { - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - entity_type?: InputMaybe; - entity_typeEQ?: InputMaybe; - entity_typeGT?: InputMaybe; - entity_typeGTE?: InputMaybe; - entity_typeIN?: InputMaybe>>; - entity_typeLIKE?: InputMaybe; - entity_typeLT?: InputMaybe; - entity_typeLTE?: InputMaybe; - entity_typeNEQ?: InputMaybe; - entity_typeNOTIN?: InputMaybe>>; - entity_typeNOTLIKE?: InputMaybe; - weight_config_id?: InputMaybe; - weight_config_idEQ?: InputMaybe; - weight_config_idGT?: InputMaybe; - weight_config_idGTE?: InputMaybe; - weight_config_idIN?: InputMaybe>>; - weight_config_idLIKE?: InputMaybe; - weight_config_idLT?: InputMaybe; - weight_config_idLTE?: InputMaybe; - weight_config_idNEQ?: InputMaybe; - weight_config_idNOTIN?: InputMaybe>>; - weight_config_idNOTLIKE?: InputMaybe; - weight_gram?: InputMaybe; - weight_gramEQ?: InputMaybe; - weight_gramGT?: InputMaybe; - weight_gramGTE?: InputMaybe; - weight_gramIN?: InputMaybe>>; - weight_gramLIKE?: InputMaybe; - weight_gramLT?: InputMaybe; - weight_gramLTE?: InputMaybe; - weight_gramNEQ?: InputMaybe; - weight_gramNOTIN?: InputMaybe>>; - weight_gramNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + entity_type?: InputMaybe; + entity_typeEQ?: InputMaybe; + entity_typeGT?: InputMaybe; + entity_typeGTE?: InputMaybe; + entity_typeIN?: InputMaybe>>; + entity_typeLIKE?: InputMaybe; + entity_typeLT?: InputMaybe; + entity_typeLTE?: InputMaybe; + entity_typeNEQ?: InputMaybe; + entity_typeNOTIN?: InputMaybe>>; + entity_typeNOTLIKE?: InputMaybe; + weight_config_id?: InputMaybe; + weight_config_idEQ?: InputMaybe; + weight_config_idGT?: InputMaybe; + weight_config_idGTE?: InputMaybe; + weight_config_idIN?: InputMaybe>>; + weight_config_idLIKE?: InputMaybe; + weight_config_idLT?: InputMaybe; + weight_config_idLTE?: InputMaybe; + weight_config_idNEQ?: InputMaybe; + weight_config_idNOTIN?: InputMaybe>>; + weight_config_idNOTLIKE?: InputMaybe; + weight_gram?: InputMaybe; + weight_gramEQ?: InputMaybe; + weight_gramGT?: InputMaybe; + weight_gramGTE?: InputMaybe; + weight_gramIN?: InputMaybe>>; + weight_gramLIKE?: InputMaybe; + weight_gramLT?: InputMaybe; + weight_gramLTE?: InputMaybe; + weight_gramNEQ?: InputMaybe; + weight_gramNOTIN?: InputMaybe>>; + weight_gramNOTLIKE?: InputMaybe; }; export type S0_Eternum_WeightOrder = { @@ -7188,33 +7188,33 @@ export type S0_Eternum_WeightOrder = { }; export enum S0_Eternum_WeightOrderField { - EntityId = 'ENTITY_ID', - Value = 'VALUE' + EntityId = "ENTITY_ID", + Value = "VALUE", } export type S0_Eternum_WeightWhereInput = { - entity_id?: InputMaybe; - entity_idEQ?: InputMaybe; - entity_idGT?: InputMaybe; - entity_idGTE?: InputMaybe; - entity_idIN?: InputMaybe>>; - entity_idLIKE?: InputMaybe; - entity_idLT?: InputMaybe; - entity_idLTE?: InputMaybe; - entity_idNEQ?: InputMaybe; - entity_idNOTIN?: InputMaybe>>; - entity_idNOTLIKE?: InputMaybe; - value?: InputMaybe; - valueEQ?: InputMaybe; - valueGT?: InputMaybe; - valueGTE?: InputMaybe; - valueIN?: InputMaybe>>; - valueLIKE?: InputMaybe; - valueLT?: InputMaybe; - valueLTE?: InputMaybe; - valueNEQ?: InputMaybe; - valueNOTIN?: InputMaybe>>; - valueNOTLIKE?: InputMaybe; + entity_id?: InputMaybe; + entity_idEQ?: InputMaybe; + entity_idGT?: InputMaybe; + entity_idGTE?: InputMaybe; + entity_idIN?: InputMaybe>>; + entity_idLIKE?: InputMaybe; + entity_idLT?: InputMaybe; + entity_idLTE?: InputMaybe; + entity_idNEQ?: InputMaybe; + entity_idNOTIN?: InputMaybe>>; + entity_idNOTLIKE?: InputMaybe; + value?: InputMaybe; + valueEQ?: InputMaybe; + valueGT?: InputMaybe; + valueGTE?: InputMaybe; + valueIN?: InputMaybe>>; + valueLIKE?: InputMaybe; + valueLT?: InputMaybe; + valueLTE?: InputMaybe; + valueNEQ?: InputMaybe; + valueNOTIN?: InputMaybe>>; + valueNOTLIKE?: InputMaybe; }; export type S0_Eternum_WorldConfigOrder = { @@ -7223,150 +7223,558 @@ export type S0_Eternum_WorldConfigOrder = { }; export enum S0_Eternum_WorldConfigOrderField { - AdminAddress = 'ADMIN_ADDRESS', - ConfigId = 'CONFIG_ID', - RealmL2Contract = 'REALM_L2_CONTRACT' + AdminAddress = "ADMIN_ADDRESS", + ConfigId = "CONFIG_ID", + RealmL2Contract = "REALM_L2_CONTRACT", } export type S0_Eternum_WorldConfigWhereInput = { - admin_address?: InputMaybe; - admin_addressEQ?: InputMaybe; - admin_addressGT?: InputMaybe; - admin_addressGTE?: InputMaybe; - admin_addressIN?: InputMaybe>>; - admin_addressLIKE?: InputMaybe; - admin_addressLT?: InputMaybe; - admin_addressLTE?: InputMaybe; - admin_addressNEQ?: InputMaybe; - admin_addressNOTIN?: InputMaybe>>; - admin_addressNOTLIKE?: InputMaybe; - config_id?: InputMaybe; - config_idEQ?: InputMaybe; - config_idGT?: InputMaybe; - config_idGTE?: InputMaybe; - config_idIN?: InputMaybe>>; - config_idLIKE?: InputMaybe; - config_idLT?: InputMaybe; - config_idLTE?: InputMaybe; - config_idNEQ?: InputMaybe; - config_idNOTIN?: InputMaybe>>; - config_idNOTLIKE?: InputMaybe; - realm_l2_contract?: InputMaybe; - realm_l2_contractEQ?: InputMaybe; - realm_l2_contractGT?: InputMaybe; - realm_l2_contractGTE?: InputMaybe; - realm_l2_contractIN?: InputMaybe>>; - realm_l2_contractLIKE?: InputMaybe; - realm_l2_contractLT?: InputMaybe; - realm_l2_contractLTE?: InputMaybe; - realm_l2_contractNEQ?: InputMaybe; - realm_l2_contractNOTIN?: InputMaybe>>; - realm_l2_contractNOTLIKE?: InputMaybe; + admin_address?: InputMaybe; + admin_addressEQ?: InputMaybe; + admin_addressGT?: InputMaybe; + admin_addressGTE?: InputMaybe; + admin_addressIN?: InputMaybe>>; + admin_addressLIKE?: InputMaybe; + admin_addressLT?: InputMaybe; + admin_addressLTE?: InputMaybe; + admin_addressNEQ?: InputMaybe; + admin_addressNOTIN?: InputMaybe>>; + admin_addressNOTLIKE?: InputMaybe; + config_id?: InputMaybe; + config_idEQ?: InputMaybe; + config_idGT?: InputMaybe; + config_idGTE?: InputMaybe; + config_idIN?: InputMaybe>>; + config_idLIKE?: InputMaybe; + config_idLT?: InputMaybe; + config_idLTE?: InputMaybe; + config_idNEQ?: InputMaybe; + config_idNOTIN?: InputMaybe>>; + config_idNOTLIKE?: InputMaybe; + realm_l2_contract?: InputMaybe; + realm_l2_contractEQ?: InputMaybe; + realm_l2_contractGT?: InputMaybe; + realm_l2_contractGTE?: InputMaybe; + realm_l2_contractIN?: InputMaybe>>; + realm_l2_contractLIKE?: InputMaybe; + realm_l2_contractLT?: InputMaybe; + realm_l2_contractLTE?: InputMaybe; + realm_l2_contractNEQ?: InputMaybe; + realm_l2_contractNOTIN?: InputMaybe>>; + realm_l2_contractNOTLIKE?: InputMaybe; }; export type GetCapacitySpeedConfigQueryVariables = Exact<{ - category: Scalars['Enum']['input']; - entityType: Scalars['u32']['input']; + category: Scalars["Enum"]["input"]; + entityType: Scalars["u32"]["input"]; }>; - -export type GetCapacitySpeedConfigQuery = { __typename?: 'World__Query', s0EternumCapacityConfigModels?: { __typename?: 's0_eternum_CapacityConfigConnection', edges?: Array<{ __typename?: 's0_eternum_CapacityConfigEdge', node?: { __typename?: 's0_eternum_CapacityConfig', weight_gram?: any | null } | null } | null> | null } | null, s0EternumSpeedConfigModels?: { __typename?: 's0_eternum_SpeedConfigConnection', edges?: Array<{ __typename?: 's0_eternum_SpeedConfigEdge', node?: { __typename?: 's0_eternum_SpeedConfig', sec_per_km?: any | null } | null } | null> | null } | null }; +export type GetCapacitySpeedConfigQuery = { + __typename?: "World__Query"; + s0EternumCapacityConfigModels?: { + __typename?: "s0_eternum_CapacityConfigConnection"; + edges?: Array<{ + __typename?: "s0_eternum_CapacityConfigEdge"; + node?: { __typename?: "s0_eternum_CapacityConfig"; weight_gram?: any | null } | null; + } | null> | null; + } | null; + s0EternumSpeedConfigModels?: { + __typename?: "s0_eternum_SpeedConfigConnection"; + edges?: Array<{ + __typename?: "s0_eternum_SpeedConfigEdge"; + node?: { __typename?: "s0_eternum_SpeedConfig"; sec_per_km?: any | null } | null; + } | null> | null; + } | null; +}; export type GetEternumOwnerRealmIdsQueryVariables = Exact<{ - accountAddress: Scalars['ContractAddress']['input']; + accountAddress: Scalars["ContractAddress"]["input"]; }>; - -export type GetEternumOwnerRealmIdsQuery = { __typename?: 'World__Query', s0EternumOwnerModels?: { __typename?: 's0_eternum_OwnerConnection', edges?: Array<{ __typename?: 's0_eternum_OwnerEdge', node?: { __typename?: 's0_eternum_Owner', address?: any | null, entity_id?: any | null, entity?: { __typename?: 'World__Entity', models?: Array<{ __typename: 's0_eternum_AcceptOrder' } | { __typename: 's0_eternum_AcceptPartialOrder' } | { __typename: 's0_eternum_AddressName' } | { __typename: 's0_eternum_Army' } | { __typename: 's0_eternum_ArrivalTime' } | { __typename: 's0_eternum_Bank' } | { __typename: 's0_eternum_BankConfig' } | { __typename: 's0_eternum_Battle' } | { __typename: 's0_eternum_BattleClaimData' } | { __typename: 's0_eternum_BattleConfig' } | { __typename: 's0_eternum_BattleJoinData' } | { __typename: 's0_eternum_BattleLeaveData' } | { __typename: 's0_eternum_BattlePillageData' } | { __typename: 's0_eternum_BattleStartData' } | { __typename: 's0_eternum_Building' } | { __typename: 's0_eternum_BuildingCategoryPopConfig' } | { __typename: 's0_eternum_BuildingConfig' } | { __typename: 's0_eternum_BuildingGeneralConfig' } | { __typename: 's0_eternum_BuildingQuantityv2' } | { __typename: 's0_eternum_BurnDonkey' } | { __typename: 's0_eternum_CancelOrder' } | { __typename: 's0_eternum_CapacityCategory' } | { __typename: 's0_eternum_CapacityConfig' } | { __typename: 's0_eternum_Contribution' } | { __typename: 's0_eternum_CreateGuild' } | { __typename: 's0_eternum_CreateOrder' } | { __typename: 's0_eternum_DetachedResource' } | { __typename: 's0_eternum_EntityName' } | { __typename: 's0_eternum_EntityOwner' } | { __typename: 's0_eternum_Epoch' } | { __typename: 's0_eternum_FragmentMineDiscovered' } | { __typename: 's0_eternum_GameEnded' } | { __typename: 's0_eternum_Guild' } | { __typename: 's0_eternum_GuildMember' } | { __typename: 's0_eternum_GuildWhitelist' } | { __typename: 's0_eternum_Health' } | { __typename: 's0_eternum_Hyperstructure' } | { __typename: 's0_eternum_HyperstructureCoOwnersChange' } | { __typename: 's0_eternum_HyperstructureConfig' } | { __typename: 's0_eternum_HyperstructureContribution' } | { __typename: 's0_eternum_HyperstructureFinished' } | { __typename: 's0_eternum_HyperstructureResourceConfig' } | { __typename: 's0_eternum_HyperstructureStarted' } | { __typename: 's0_eternum_JoinGuild' } | { __typename: 's0_eternum_Leaderboard' } | { __typename: 's0_eternum_LeaderboardEntry' } | { __typename: 's0_eternum_LeaderboardRegisterContribution' } | { __typename: 's0_eternum_LeaderboardRegisterShare' } | { __typename: 's0_eternum_LeaderboardRegistered' } | { __typename: 's0_eternum_LeaderboardRewardClaimed' } | { __typename: 's0_eternum_LevelingConfig' } | { __typename: 's0_eternum_Liquidity' } | { __typename: 's0_eternum_LiquidityEvent' } | { __typename: 's0_eternum_MapConfig' } | { __typename: 's0_eternum_MapExplored' } | { __typename: 's0_eternum_Market' } | { __typename: 's0_eternum_MercenariesConfig' } | { __typename: 's0_eternum_Message' } | { __typename: 's0_eternum_Movable' } | { __typename: 's0_eternum_Orders' } | { __typename: 's0_eternum_OwnedResourcesTracker' } | { __typename: 's0_eternum_Owner' } | { __typename: 's0_eternum_Population' } | { __typename: 's0_eternum_PopulationConfig' } | { __typename: 's0_eternum_Position' } | { __typename: 's0_eternum_Production' } | { __typename: 's0_eternum_ProductionConfig' } | { __typename: 's0_eternum_ProductionDeadline' } | { __typename: 's0_eternum_ProductionInput' } | { __typename: 's0_eternum_ProductionOutput' } | { __typename: 's0_eternum_Progress' } | { __typename: 's0_eternum_Protectee' } | { __typename: 's0_eternum_Protector' } | { __typename: 's0_eternum_Quantity' } | { __typename: 's0_eternum_QuantityTracker' } | { __typename: 's0_eternum_Quest' } | { __typename: 's0_eternum_QuestBonus' } | { __typename: 's0_eternum_QuestConfig' } | { __typename: 's0_eternum_QuestRewardConfig' } | { __typename: 's0_eternum_Realm', realm_id?: any | null } | { __typename: 's0_eternum_RealmLevelConfig' } | { __typename: 's0_eternum_RealmMaxLevelConfig' } | { __typename: 's0_eternum_Resource' } | { __typename: 's0_eternum_ResourceAllowance' } | { __typename: 's0_eternum_ResourceBridgeConfig' } | { __typename: 's0_eternum_ResourceBridgeFeeSplitConfig' } | { __typename: 's0_eternum_ResourceBridgeWhitelistConfig' } | { __typename: 's0_eternum_ResourceCost' } | { __typename: 's0_eternum_ResourceTransferLock' } | { __typename: 's0_eternum_Season' } | { __typename: 's0_eternum_SeasonAddressesConfig' } | { __typename: 's0_eternum_SeasonBridgeConfig' } | { __typename: 's0_eternum_SettleRealmData' } | { __typename: 's0_eternum_SettlementConfig' } | { __typename: 's0_eternum_SpeedConfig' } | { __typename: 's0_eternum_Stamina' } | { __typename: 's0_eternum_StaminaConfig' } | { __typename: 's0_eternum_StaminaRefillConfig' } | { __typename: 's0_eternum_Status' } | { __typename: 's0_eternum_Structure' } | { __typename: 's0_eternum_StructureCount' } | { __typename: 's0_eternum_SwapEvent' } | { __typename: 's0_eternum_TickConfig' } | { __typename: 's0_eternum_Tile' } | { __typename: 's0_eternum_Trade' } | { __typename: 's0_eternum_Transfer' } | { __typename: 's0_eternum_Travel' } | { __typename: 's0_eternum_TravelFoodCostConfig' } | { __typename: 's0_eternum_TravelStaminaCostConfig' } | { __typename: 's0_eternum_TroopConfig' } | { __typename: 's0_eternum_TrophyCreation' } | { __typename: 's0_eternum_TrophyProgression' } | { __typename: 's0_eternum_VRFConfig' } | { __typename: 's0_eternum_Weight' } | { __typename: 's0_eternum_WeightConfig' } | { __typename: 's0_eternum_WorldConfig' } | null> | null } | null } | null } | null> | null } | null }; +export type GetEternumOwnerRealmIdsQuery = { + __typename?: "World__Query"; + s0EternumOwnerModels?: { + __typename?: "s0_eternum_OwnerConnection"; + edges?: Array<{ + __typename?: "s0_eternum_OwnerEdge"; + node?: { + __typename?: "s0_eternum_Owner"; + address?: any | null; + entity_id?: any | null; + entity?: { + __typename?: "World__Entity"; + models?: Array< + | { __typename: "s0_eternum_AcceptOrder" } + | { __typename: "s0_eternum_AcceptPartialOrder" } + | { __typename: "s0_eternum_AddressName" } + | { __typename: "s0_eternum_Army" } + | { __typename: "s0_eternum_ArrivalTime" } + | { __typename: "s0_eternum_Bank" } + | { __typename: "s0_eternum_BankConfig" } + | { __typename: "s0_eternum_Battle" } + | { __typename: "s0_eternum_BattleClaimData" } + | { __typename: "s0_eternum_BattleConfig" } + | { __typename: "s0_eternum_BattleJoinData" } + | { __typename: "s0_eternum_BattleLeaveData" } + | { __typename: "s0_eternum_BattlePillageData" } + | { __typename: "s0_eternum_BattleStartData" } + | { __typename: "s0_eternum_Building" } + | { __typename: "s0_eternum_BuildingCategoryPopConfig" } + | { __typename: "s0_eternum_BuildingConfig" } + | { __typename: "s0_eternum_BuildingGeneralConfig" } + | { __typename: "s0_eternum_BuildingQuantityv2" } + | { __typename: "s0_eternum_BurnDonkey" } + | { __typename: "s0_eternum_CancelOrder" } + | { __typename: "s0_eternum_CapacityCategory" } + | { __typename: "s0_eternum_CapacityConfig" } + | { __typename: "s0_eternum_Contribution" } + | { __typename: "s0_eternum_CreateGuild" } + | { __typename: "s0_eternum_CreateOrder" } + | { __typename: "s0_eternum_DetachedResource" } + | { __typename: "s0_eternum_EntityName" } + | { __typename: "s0_eternum_EntityOwner" } + | { __typename: "s0_eternum_Epoch" } + | { __typename: "s0_eternum_FragmentMineDiscovered" } + | { __typename: "s0_eternum_GameEnded" } + | { __typename: "s0_eternum_Guild" } + | { __typename: "s0_eternum_GuildMember" } + | { __typename: "s0_eternum_GuildWhitelist" } + | { __typename: "s0_eternum_Health" } + | { __typename: "s0_eternum_Hyperstructure" } + | { __typename: "s0_eternum_HyperstructureCoOwnersChange" } + | { __typename: "s0_eternum_HyperstructureConfig" } + | { __typename: "s0_eternum_HyperstructureContribution" } + | { __typename: "s0_eternum_HyperstructureFinished" } + | { __typename: "s0_eternum_HyperstructureResourceConfig" } + | { __typename: "s0_eternum_HyperstructureStarted" } + | { __typename: "s0_eternum_JoinGuild" } + | { __typename: "s0_eternum_Leaderboard" } + | { __typename: "s0_eternum_LeaderboardEntry" } + | { __typename: "s0_eternum_LeaderboardRegisterContribution" } + | { __typename: "s0_eternum_LeaderboardRegisterShare" } + | { __typename: "s0_eternum_LeaderboardRegistered" } + | { __typename: "s0_eternum_LeaderboardRewardClaimed" } + | { __typename: "s0_eternum_LevelingConfig" } + | { __typename: "s0_eternum_Liquidity" } + | { __typename: "s0_eternum_LiquidityEvent" } + | { __typename: "s0_eternum_MapConfig" } + | { __typename: "s0_eternum_MapExplored" } + | { __typename: "s0_eternum_Market" } + | { __typename: "s0_eternum_MercenariesConfig" } + | { __typename: "s0_eternum_Message" } + | { __typename: "s0_eternum_Movable" } + | { __typename: "s0_eternum_Orders" } + | { __typename: "s0_eternum_OwnedResourcesTracker" } + | { __typename: "s0_eternum_Owner" } + | { __typename: "s0_eternum_Population" } + | { __typename: "s0_eternum_PopulationConfig" } + | { __typename: "s0_eternum_Position" } + | { __typename: "s0_eternum_Production" } + | { __typename: "s0_eternum_ProductionConfig" } + | { __typename: "s0_eternum_ProductionDeadline" } + | { __typename: "s0_eternum_ProductionInput" } + | { __typename: "s0_eternum_ProductionOutput" } + | { __typename: "s0_eternum_Progress" } + | { __typename: "s0_eternum_Protectee" } + | { __typename: "s0_eternum_Protector" } + | { __typename: "s0_eternum_Quantity" } + | { __typename: "s0_eternum_QuantityTracker" } + | { __typename: "s0_eternum_Quest" } + | { __typename: "s0_eternum_QuestBonus" } + | { __typename: "s0_eternum_QuestConfig" } + | { __typename: "s0_eternum_QuestRewardConfig" } + | { __typename: "s0_eternum_Realm"; realm_id?: any | null } + | { __typename: "s0_eternum_RealmLevelConfig" } + | { __typename: "s0_eternum_RealmMaxLevelConfig" } + | { __typename: "s0_eternum_Resource" } + | { __typename: "s0_eternum_ResourceAllowance" } + | { __typename: "s0_eternum_ResourceBridgeConfig" } + | { __typename: "s0_eternum_ResourceBridgeFeeSplitConfig" } + | { __typename: "s0_eternum_ResourceBridgeWhitelistConfig" } + | { __typename: "s0_eternum_ResourceCost" } + | { __typename: "s0_eternum_ResourceTransferLock" } + | { __typename: "s0_eternum_Season" } + | { __typename: "s0_eternum_SeasonAddressesConfig" } + | { __typename: "s0_eternum_SeasonBridgeConfig" } + | { __typename: "s0_eternum_SettleRealmData" } + | { __typename: "s0_eternum_SettlementConfig" } + | { __typename: "s0_eternum_SpeedConfig" } + | { __typename: "s0_eternum_Stamina" } + | { __typename: "s0_eternum_StaminaConfig" } + | { __typename: "s0_eternum_StaminaRefillConfig" } + | { __typename: "s0_eternum_Status" } + | { __typename: "s0_eternum_Structure" } + | { __typename: "s0_eternum_StructureCount" } + | { __typename: "s0_eternum_SwapEvent" } + | { __typename: "s0_eternum_TickConfig" } + | { __typename: "s0_eternum_Tile" } + | { __typename: "s0_eternum_Trade" } + | { __typename: "s0_eternum_Transfer" } + | { __typename: "s0_eternum_Travel" } + | { __typename: "s0_eternum_TravelFoodCostConfig" } + | { __typename: "s0_eternum_TravelStaminaCostConfig" } + | { __typename: "s0_eternum_TroopConfig" } + | { __typename: "s0_eternum_TrophyCreation" } + | { __typename: "s0_eternum_TrophyProgression" } + | { __typename: "s0_eternum_VRFConfig" } + | { __typename: "s0_eternum_Weight" } + | { __typename: "s0_eternum_WeightConfig" } + | { __typename: "s0_eternum_WorldConfig" } + | null + > | null; + } | null; + } | null; + } | null> | null; + } | null; +}; export type GetEternumEntityOwnerQueryVariables = Exact<{ - entityOwnerIds: Array | Scalars['u32']['input']; + entityOwnerIds: Array | Scalars["u32"]["input"]; }>; - -export type GetEternumEntityOwnerQuery = { __typename?: 'World__Query', s0EternumEntityOwnerModels?: { __typename?: 's0_eternum_EntityOwnerConnection', edges?: Array<{ __typename?: 's0_eternum_EntityOwnerEdge', node?: { __typename?: 's0_eternum_EntityOwner', entity_id?: any | null, entity_owner_id?: any | null, entity?: { __typename?: 'World__Entity', models?: Array<{ __typename: 's0_eternum_AcceptOrder' } | { __typename: 's0_eternum_AcceptPartialOrder' } | { __typename: 's0_eternum_AddressName' } | { __typename: 's0_eternum_Army' } | { __typename: 's0_eternum_ArrivalTime', arrives_at?: any | null } | { __typename: 's0_eternum_Bank' } | { __typename: 's0_eternum_BankConfig' } | { __typename: 's0_eternum_Battle' } | { __typename: 's0_eternum_BattleClaimData' } | { __typename: 's0_eternum_BattleConfig' } | { __typename: 's0_eternum_BattleJoinData' } | { __typename: 's0_eternum_BattleLeaveData' } | { __typename: 's0_eternum_BattlePillageData' } | { __typename: 's0_eternum_BattleStartData' } | { __typename: 's0_eternum_Building' } | { __typename: 's0_eternum_BuildingCategoryPopConfig' } | { __typename: 's0_eternum_BuildingConfig' } | { __typename: 's0_eternum_BuildingGeneralConfig' } | { __typename: 's0_eternum_BuildingQuantityv2' } | { __typename: 's0_eternum_BurnDonkey' } | { __typename: 's0_eternum_CancelOrder' } | { __typename: 's0_eternum_CapacityCategory' } | { __typename: 's0_eternum_CapacityConfig' } | { __typename: 's0_eternum_Contribution' } | { __typename: 's0_eternum_CreateGuild' } | { __typename: 's0_eternum_CreateOrder' } | { __typename: 's0_eternum_DetachedResource' } | { __typename: 's0_eternum_EntityName' } | { __typename: 's0_eternum_EntityOwner' } | { __typename: 's0_eternum_Epoch' } | { __typename: 's0_eternum_FragmentMineDiscovered' } | { __typename: 's0_eternum_GameEnded' } | { __typename: 's0_eternum_Guild' } | { __typename: 's0_eternum_GuildMember' } | { __typename: 's0_eternum_GuildWhitelist' } | { __typename: 's0_eternum_Health' } | { __typename: 's0_eternum_Hyperstructure' } | { __typename: 's0_eternum_HyperstructureCoOwnersChange' } | { __typename: 's0_eternum_HyperstructureConfig' } | { __typename: 's0_eternum_HyperstructureContribution' } | { __typename: 's0_eternum_HyperstructureFinished' } | { __typename: 's0_eternum_HyperstructureResourceConfig' } | { __typename: 's0_eternum_HyperstructureStarted' } | { __typename: 's0_eternum_JoinGuild' } | { __typename: 's0_eternum_Leaderboard' } | { __typename: 's0_eternum_LeaderboardEntry' } | { __typename: 's0_eternum_LeaderboardRegisterContribution' } | { __typename: 's0_eternum_LeaderboardRegisterShare' } | { __typename: 's0_eternum_LeaderboardRegistered' } | { __typename: 's0_eternum_LeaderboardRewardClaimed' } | { __typename: 's0_eternum_LevelingConfig' } | { __typename: 's0_eternum_Liquidity' } | { __typename: 's0_eternum_LiquidityEvent' } | { __typename: 's0_eternum_MapConfig' } | { __typename: 's0_eternum_MapExplored' } | { __typename: 's0_eternum_Market' } | { __typename: 's0_eternum_MercenariesConfig' } | { __typename: 's0_eternum_Message' } | { __typename: 's0_eternum_Movable' } | { __typename: 's0_eternum_Orders' } | { __typename: 's0_eternum_OwnedResourcesTracker', resource_types?: any | null } | { __typename: 's0_eternum_Owner' } | { __typename: 's0_eternum_Population' } | { __typename: 's0_eternum_PopulationConfig' } | { __typename: 's0_eternum_Position', x?: any | null, y?: any | null } | { __typename: 's0_eternum_Production' } | { __typename: 's0_eternum_ProductionConfig' } | { __typename: 's0_eternum_ProductionDeadline' } | { __typename: 's0_eternum_ProductionInput' } | { __typename: 's0_eternum_ProductionOutput' } | { __typename: 's0_eternum_Progress' } | { __typename: 's0_eternum_Protectee' } | { __typename: 's0_eternum_Protector' } | { __typename: 's0_eternum_Quantity' } | { __typename: 's0_eternum_QuantityTracker' } | { __typename: 's0_eternum_Quest' } | { __typename: 's0_eternum_QuestBonus' } | { __typename: 's0_eternum_QuestConfig' } | { __typename: 's0_eternum_QuestRewardConfig' } | { __typename: 's0_eternum_Realm' } | { __typename: 's0_eternum_RealmLevelConfig' } | { __typename: 's0_eternum_RealmMaxLevelConfig' } | { __typename: 's0_eternum_Resource' } | { __typename: 's0_eternum_ResourceAllowance' } | { __typename: 's0_eternum_ResourceBridgeConfig' } | { __typename: 's0_eternum_ResourceBridgeFeeSplitConfig' } | { __typename: 's0_eternum_ResourceBridgeWhitelistConfig' } | { __typename: 's0_eternum_ResourceCost' } | { __typename: 's0_eternum_ResourceTransferLock' } | { __typename: 's0_eternum_Season' } | { __typename: 's0_eternum_SeasonAddressesConfig' } | { __typename: 's0_eternum_SeasonBridgeConfig' } | { __typename: 's0_eternum_SettleRealmData' } | { __typename: 's0_eternum_SettlementConfig' } | { __typename: 's0_eternum_SpeedConfig' } | { __typename: 's0_eternum_Stamina' } | { __typename: 's0_eternum_StaminaConfig' } | { __typename: 's0_eternum_StaminaRefillConfig' } | { __typename: 's0_eternum_Status' } | { __typename: 's0_eternum_Structure' } | { __typename: 's0_eternum_StructureCount' } | { __typename: 's0_eternum_SwapEvent' } | { __typename: 's0_eternum_TickConfig' } | { __typename: 's0_eternum_Tile' } | { __typename: 's0_eternum_Trade' } | { __typename: 's0_eternum_Transfer' } | { __typename: 's0_eternum_Travel' } | { __typename: 's0_eternum_TravelFoodCostConfig' } | { __typename: 's0_eternum_TravelStaminaCostConfig' } | { __typename: 's0_eternum_TroopConfig' } | { __typename: 's0_eternum_TrophyCreation' } | { __typename: 's0_eternum_TrophyProgression' } | { __typename: 's0_eternum_VRFConfig' } | { __typename: 's0_eternum_Weight', value?: any | null } | { __typename: 's0_eternum_WeightConfig' } | { __typename: 's0_eternum_WorldConfig' } | null> | null } | null } | null } | null> | null } | null }; +export type GetEternumEntityOwnerQuery = { + __typename?: "World__Query"; + s0EternumEntityOwnerModels?: { + __typename?: "s0_eternum_EntityOwnerConnection"; + edges?: Array<{ + __typename?: "s0_eternum_EntityOwnerEdge"; + node?: { + __typename?: "s0_eternum_EntityOwner"; + entity_id?: any | null; + entity_owner_id?: any | null; + entity?: { + __typename?: "World__Entity"; + models?: Array< + | { __typename: "s0_eternum_AcceptOrder" } + | { __typename: "s0_eternum_AcceptPartialOrder" } + | { __typename: "s0_eternum_AddressName" } + | { __typename: "s0_eternum_Army" } + | { __typename: "s0_eternum_ArrivalTime"; arrives_at?: any | null } + | { __typename: "s0_eternum_Bank" } + | { __typename: "s0_eternum_BankConfig" } + | { __typename: "s0_eternum_Battle" } + | { __typename: "s0_eternum_BattleClaimData" } + | { __typename: "s0_eternum_BattleConfig" } + | { __typename: "s0_eternum_BattleJoinData" } + | { __typename: "s0_eternum_BattleLeaveData" } + | { __typename: "s0_eternum_BattlePillageData" } + | { __typename: "s0_eternum_BattleStartData" } + | { __typename: "s0_eternum_Building" } + | { __typename: "s0_eternum_BuildingCategoryPopConfig" } + | { __typename: "s0_eternum_BuildingConfig" } + | { __typename: "s0_eternum_BuildingGeneralConfig" } + | { __typename: "s0_eternum_BuildingQuantityv2" } + | { __typename: "s0_eternum_BurnDonkey" } + | { __typename: "s0_eternum_CancelOrder" } + | { __typename: "s0_eternum_CapacityCategory" } + | { __typename: "s0_eternum_CapacityConfig" } + | { __typename: "s0_eternum_Contribution" } + | { __typename: "s0_eternum_CreateGuild" } + | { __typename: "s0_eternum_CreateOrder" } + | { __typename: "s0_eternum_DetachedResource" } + | { __typename: "s0_eternum_EntityName" } + | { __typename: "s0_eternum_EntityOwner" } + | { __typename: "s0_eternum_Epoch" } + | { __typename: "s0_eternum_FragmentMineDiscovered" } + | { __typename: "s0_eternum_GameEnded" } + | { __typename: "s0_eternum_Guild" } + | { __typename: "s0_eternum_GuildMember" } + | { __typename: "s0_eternum_GuildWhitelist" } + | { __typename: "s0_eternum_Health" } + | { __typename: "s0_eternum_Hyperstructure" } + | { __typename: "s0_eternum_HyperstructureCoOwnersChange" } + | { __typename: "s0_eternum_HyperstructureConfig" } + | { __typename: "s0_eternum_HyperstructureContribution" } + | { __typename: "s0_eternum_HyperstructureFinished" } + | { __typename: "s0_eternum_HyperstructureResourceConfig" } + | { __typename: "s0_eternum_HyperstructureStarted" } + | { __typename: "s0_eternum_JoinGuild" } + | { __typename: "s0_eternum_Leaderboard" } + | { __typename: "s0_eternum_LeaderboardEntry" } + | { __typename: "s0_eternum_LeaderboardRegisterContribution" } + | { __typename: "s0_eternum_LeaderboardRegisterShare" } + | { __typename: "s0_eternum_LeaderboardRegistered" } + | { __typename: "s0_eternum_LeaderboardRewardClaimed" } + | { __typename: "s0_eternum_LevelingConfig" } + | { __typename: "s0_eternum_Liquidity" } + | { __typename: "s0_eternum_LiquidityEvent" } + | { __typename: "s0_eternum_MapConfig" } + | { __typename: "s0_eternum_MapExplored" } + | { __typename: "s0_eternum_Market" } + | { __typename: "s0_eternum_MercenariesConfig" } + | { __typename: "s0_eternum_Message" } + | { __typename: "s0_eternum_Movable" } + | { __typename: "s0_eternum_Orders" } + | { __typename: "s0_eternum_OwnedResourcesTracker"; resource_types?: any | null } + | { __typename: "s0_eternum_Owner" } + | { __typename: "s0_eternum_Population" } + | { __typename: "s0_eternum_PopulationConfig" } + | { __typename: "s0_eternum_Position"; x?: any | null; y?: any | null } + | { __typename: "s0_eternum_Production" } + | { __typename: "s0_eternum_ProductionConfig" } + | { __typename: "s0_eternum_ProductionDeadline" } + | { __typename: "s0_eternum_ProductionInput" } + | { __typename: "s0_eternum_ProductionOutput" } + | { __typename: "s0_eternum_Progress" } + | { __typename: "s0_eternum_Protectee" } + | { __typename: "s0_eternum_Protector" } + | { __typename: "s0_eternum_Quantity" } + | { __typename: "s0_eternum_QuantityTracker" } + | { __typename: "s0_eternum_Quest" } + | { __typename: "s0_eternum_QuestBonus" } + | { __typename: "s0_eternum_QuestConfig" } + | { __typename: "s0_eternum_QuestRewardConfig" } + | { __typename: "s0_eternum_Realm" } + | { __typename: "s0_eternum_RealmLevelConfig" } + | { __typename: "s0_eternum_RealmMaxLevelConfig" } + | { __typename: "s0_eternum_Resource" } + | { __typename: "s0_eternum_ResourceAllowance" } + | { __typename: "s0_eternum_ResourceBridgeConfig" } + | { __typename: "s0_eternum_ResourceBridgeFeeSplitConfig" } + | { __typename: "s0_eternum_ResourceBridgeWhitelistConfig" } + | { __typename: "s0_eternum_ResourceCost" } + | { __typename: "s0_eternum_ResourceTransferLock" } + | { __typename: "s0_eternum_Season" } + | { __typename: "s0_eternum_SeasonAddressesConfig" } + | { __typename: "s0_eternum_SeasonBridgeConfig" } + | { __typename: "s0_eternum_SettleRealmData" } + | { __typename: "s0_eternum_SettlementConfig" } + | { __typename: "s0_eternum_SpeedConfig" } + | { __typename: "s0_eternum_Stamina" } + | { __typename: "s0_eternum_StaminaConfig" } + | { __typename: "s0_eternum_StaminaRefillConfig" } + | { __typename: "s0_eternum_Status" } + | { __typename: "s0_eternum_Structure" } + | { __typename: "s0_eternum_StructureCount" } + | { __typename: "s0_eternum_SwapEvent" } + | { __typename: "s0_eternum_TickConfig" } + | { __typename: "s0_eternum_Tile" } + | { __typename: "s0_eternum_Trade" } + | { __typename: "s0_eternum_Transfer" } + | { __typename: "s0_eternum_Travel" } + | { __typename: "s0_eternum_TravelFoodCostConfig" } + | { __typename: "s0_eternum_TravelStaminaCostConfig" } + | { __typename: "s0_eternum_TroopConfig" } + | { __typename: "s0_eternum_TrophyCreation" } + | { __typename: "s0_eternum_TrophyProgression" } + | { __typename: "s0_eternum_VRFConfig" } + | { __typename: "s0_eternum_Weight"; value?: any | null } + | { __typename: "s0_eternum_WeightConfig" } + | { __typename: "s0_eternum_WorldConfig" } + | null + > | null; + } | null; + } | null; + } | null> | null; + } | null; +}; export type GetAccountTokensQueryVariables = Exact<{ - accountAddress: Scalars['String']['input']; -}>; - - -export type GetAccountTokensQuery = { __typename?: 'World__Query', tokenBalances?: { __typename?: 'Token__BalanceConnection', edges?: Array<{ __typename?: 'Token__BalanceEdge', node?: { __typename?: 'Token__Balance', tokenMetadata: { __typename: 'ERC20__Token' } | { __typename: 'ERC721__Token', tokenId: string, metadataDescription?: string | null, imagePath: string, contractAddress: string, metadata: string } } | null } | null> | null } | null }; - -export type GetErc721MintsQueryVariables = Exact<{ [key: string]: never; }>; - - -export type GetErc721MintsQuery = { __typename?: 'World__Query', tokenTransfers?: { __typename?: 'Token__TransferConnection', edges?: Array<{ __typename?: 'Token__TransferEdge', node?: { __typename?: 'Token__Transfer', tokenMetadata: { __typename: 'ERC20__Token' } | { __typename: 'ERC721__Token', tokenId: string, metadataDescription?: string | null, imagePath: string, contractAddress: string, metadata: string } } | null } | null> | null } | null }; - -export type EternumStatisticsQueryVariables = Exact<{ [key: string]: never; }>; - - -export type EternumStatisticsQuery = { __typename?: 'World__Query', s0EternumAddressNameModels?: { __typename?: 's0_eternum_AddressNameConnection', totalCount: number } | null, s0EternumHyperstructureModels?: { __typename?: 's0_eternum_HyperstructureConnection', totalCount: number } | null, s0EternumRealmModels?: { __typename?: 's0_eternum_RealmConnection', totalCount: number } | null, s0EternumFragmentMineDiscoveredModels?: { __typename?: 's0_eternum_FragmentMineDiscoveredConnection', totalCount: number } | null }; - -export type HasGameEndedQueryVariables = Exact<{ [key: string]: never; }>; - - -export type HasGameEndedQuery = { __typename?: 'World__Query', s0EternumGameEndedModels?: { __typename?: 's0_eternum_GameEndedConnection', edges?: Array<{ __typename?: 's0_eternum_GameEndedEdge', node?: { __typename?: 's0_eternum_GameEnded', winner_address?: any | null } | null } | null> | null } | null }; - -export type HasPlayerRegisteredQueryVariables = Exact<{ - accountAddress: Scalars['ContractAddress']['input']; -}>; - - -export type HasPlayerRegisteredQuery = { __typename?: 'World__Query', s0EternumOwnerModels?: { __typename?: 's0_eternum_OwnerConnection', totalCount: number } | null }; - -export type HasPlayerClaimedQueryVariables = Exact<{ - accountAddress: Scalars['ContractAddress']['input']; + accountAddress: Scalars["String"]["input"]; }>; - -export type HasPlayerClaimedQuery = { __typename?: 'World__Query', s0EternumLeaderboardRewardClaimedModels?: { __typename?: 's0_eternum_LeaderboardRewardClaimedConnection', totalCount: number } | null }; +export type GetAccountTokensQuery = { + __typename?: "World__Query"; + tokenBalances?: { + __typename?: "Token__BalanceConnection"; + edges?: Array<{ + __typename?: "Token__BalanceEdge"; + node?: { + __typename?: "Token__Balance"; + tokenMetadata: + | { __typename: "ERC20__Token" } + | { + __typename: "ERC721__Token"; + tokenId: string; + metadataDescription?: string | null; + imagePath: string; + contractAddress: string; + metadata: string; + }; + } | null; + } | null> | null; + } | null; +}; + +export type GetErc721MintsQueryVariables = Exact<{ [key: string]: never }>; + +export type GetErc721MintsQuery = { + __typename?: "World__Query"; + tokenTransfers?: { + __typename?: "Token__TransferConnection"; + edges?: Array<{ + __typename?: "Token__TransferEdge"; + node?: { + __typename?: "Token__Transfer"; + tokenMetadata: + | { __typename: "ERC20__Token" } + | { + __typename: "ERC721__Token"; + tokenId: string; + metadataDescription?: string | null; + imagePath: string; + contractAddress: string; + metadata: string; + }; + } | null; + } | null> | null; + } | null; +}; + +export type EternumStatisticsQueryVariables = Exact<{ [key: string]: never }>; + +export type EternumStatisticsQuery = { + __typename?: "World__Query"; + s0EternumAddressNameModels?: { __typename?: "s0_eternum_AddressNameConnection"; totalCount: number } | null; + s0EternumHyperstructureModels?: { __typename?: "s0_eternum_HyperstructureConnection"; totalCount: number } | null; + s0EternumRealmModels?: { __typename?: "s0_eternum_RealmConnection"; totalCount: number } | null; + s0EternumFragmentMineDiscoveredModels?: { + __typename?: "s0_eternum_FragmentMineDiscoveredConnection"; + totalCount: number; + } | null; +}; + +export type HasGameEndedQueryVariables = Exact<{ [key: string]: never }>; + +export type HasGameEndedQuery = { + __typename?: "World__Query"; + s0EternumGameEndedModels?: { + __typename?: "s0_eternum_GameEndedConnection"; + edges?: Array<{ + __typename?: "s0_eternum_GameEndedEdge"; + node?: { __typename?: "s0_eternum_GameEnded"; winner_address?: any | null } | null; + } | null> | null; + } | null; +}; export type GetLeaderboardEntryQueryVariables = Exact<{ - accountAddress: Scalars['ContractAddress']['input']; + accountAddress: Scalars["ContractAddress"]["input"]; }>; - -export type GetLeaderboardEntryQuery = { __typename?: 'World__Query', s0EternumLeaderboardEntryModels?: { __typename?: 's0_eternum_LeaderboardEntryConnection', edges?: Array<{ __typename?: 's0_eternum_LeaderboardEntryEdge', node?: { __typename?: 's0_eternum_LeaderboardEntry', address?: any | null, points?: any | null } | null } | null> | null } | null }; - -export type GetLeaderboardQueryVariables = Exact<{ [key: string]: never; }>; - - -export type GetLeaderboardQuery = { __typename?: 'World__Query', s0EternumLeaderboardModels?: { __typename?: 's0_eternum_LeaderboardConnection', edges?: Array<{ __typename?: 's0_eternum_LeaderboardEdge', node?: { __typename?: 's0_eternum_Leaderboard', total_points?: any | null, registration_end_timestamp?: any | null, distribution_started?: any | null, total_price_pool?: { __typename?: 's0_eternum_Optionu256', Some?: any | null, option?: any | null } | null } | null } | null> | null } | null }; +export type GetLeaderboardEntryQuery = { + __typename?: "World__Query"; + s0EternumLeaderboardEntryModels?: { + __typename?: "s0_eternum_LeaderboardEntryConnection"; + edges?: Array<{ + __typename?: "s0_eternum_LeaderboardEntryEdge"; + node?: { __typename?: "s0_eternum_LeaderboardEntry"; address?: any | null; points?: any | null } | null; + } | null> | null; + } | null; +}; + +export type GetLeaderboardQueryVariables = Exact<{ [key: string]: never }>; + +export type GetLeaderboardQuery = { + __typename?: "World__Query"; + s0EternumLeaderboardModels?: { + __typename?: "s0_eternum_LeaderboardConnection"; + edges?: Array<{ + __typename?: "s0_eternum_LeaderboardEdge"; + node?: { + __typename?: "s0_eternum_Leaderboard"; + total_points?: any | null; + registration_end_timestamp?: any | null; + distribution_started?: any | null; + total_price_pool?: { __typename?: "s0_eternum_Optionu256"; Some?: any | null; option?: any | null } | null; + } | null; + } | null> | null; + } | null; +}; export type GetHyperstructureContributionsQueryVariables = Exact<{ - accountAddress: Scalars['ContractAddress']['input']; + accountAddress: Scalars["ContractAddress"]["input"]; }>; - -export type GetHyperstructureContributionsQuery = { __typename?: 'World__Query', s0EternumContributionModels?: { __typename?: 's0_eternum_ContributionConnection', edges?: Array<{ __typename?: 's0_eternum_ContributionEdge', node?: { __typename?: 's0_eternum_Contribution', hyperstructure_entity_id?: any | null, amount?: any | null } | null } | null> | null } | null }; - -export type GetEpochsQueryVariables = Exact<{ [key: string]: never; }>; - - -export type GetEpochsQuery = { __typename?: 'World__Query', s0EternumEpochModels?: { __typename?: 's0_eternum_EpochConnection', edges?: Array<{ __typename?: 's0_eternum_EpochEdge', node?: { __typename?: 's0_eternum_Epoch', start_timestamp?: any | null, hyperstructure_entity_id?: any | null, index?: any | null, owners?: Array<{ __typename?: 's0_eternum_ContractAddressu16', _0?: any | null, _1?: any | null } | null> | null } | null } | null> | null } | null }; +export type GetHyperstructureContributionsQuery = { + __typename?: "World__Query"; + s0EternumContributionModels?: { + __typename?: "s0_eternum_ContributionConnection"; + edges?: Array<{ + __typename?: "s0_eternum_ContributionEdge"; + node?: { + __typename?: "s0_eternum_Contribution"; + hyperstructure_entity_id?: any | null; + amount?: any | null; + } | null; + } | null> | null; + } | null; +}; + +export type GetEpochsQueryVariables = Exact<{ [key: string]: never }>; + +export type GetEpochsQuery = { + __typename?: "World__Query"; + s0EternumEpochModels?: { + __typename?: "s0_eternum_EpochConnection"; + edges?: Array<{ + __typename?: "s0_eternum_EpochEdge"; + node?: { + __typename?: "s0_eternum_Epoch"; + start_timestamp?: any | null; + hyperstructure_entity_id?: any | null; + index?: any | null; + owners?: Array<{ + __typename?: "s0_eternum_ContractAddressu16"; + _0?: any | null; + _1?: any | null; + } | null> | null; + } | null; + } | null> | null; + } | null; +}; export type GetEntityPositionQueryVariables = Exact<{ - entityIds: Array | Scalars['u32']['input']; + entityIds: Array | Scalars["u32"]["input"]; }>; - -export type GetEntityPositionQuery = { __typename?: 'World__Query', s0EternumPositionModels?: { __typename?: 's0_eternum_PositionConnection', edges?: Array<{ __typename?: 's0_eternum_PositionEdge', node?: { __typename?: 's0_eternum_Position', x?: any | null, y?: any | null, entity_id?: any | null, entity?: { __typename: 'World__Entity' } | null } | null } | null> | null } | null }; +export type GetEntityPositionQuery = { + __typename?: "World__Query"; + s0EternumPositionModels?: { + __typename?: "s0_eternum_PositionConnection"; + edges?: Array<{ + __typename?: "s0_eternum_PositionEdge"; + node?: { + __typename?: "s0_eternum_Position"; + x?: any | null; + y?: any | null; + entity_id?: any | null; + entity?: { __typename: "World__Entity" } | null; + } | null; + } | null> | null; + } | null; +}; export type GetEntitiesResourcesQueryVariables = Exact<{ - entityIds: Array | Scalars['u32']['input']; + entityIds: Array | Scalars["u32"]["input"]; }>; - -export type GetEntitiesResourcesQuery = { __typename?: 'World__Query', s0EternumResourceModels?: { __typename?: 's0_eternum_ResourceConnection', edges?: Array<{ __typename?: 's0_eternum_ResourceEdge', node?: { __typename?: 's0_eternum_Resource', entity_id?: any | null, resource_type?: any | null, balance?: any | null, entity?: { __typename: 'World__Entity' } | null } | null } | null> | null } | null }; +export type GetEntitiesResourcesQuery = { + __typename?: "World__Query"; + s0EternumResourceModels?: { + __typename?: "s0_eternum_ResourceConnection"; + edges?: Array<{ + __typename?: "s0_eternum_ResourceEdge"; + node?: { + __typename?: "s0_eternum_Resource"; + entity_id?: any | null; + resource_type?: any | null; + balance?: any | null; + entity?: { __typename: "World__Entity" } | null; + } | null; + } | null> | null; + } | null; +}; export class TypedDocumentString extends String implements DocumentTypeDecoration { - __apiType?: DocumentTypeDecoration['__apiType']; + __apiType?: DocumentTypeDecoration["__apiType"]; - constructor(private value: string, public __meta__?: Record | undefined) { + constructor( + private value: string, + public __meta__?: Record | undefined, + ) { super(value); } @@ -7513,20 +7921,6 @@ export const HasGameEndedDocument = new TypedDocumentString(` } } `) as unknown as TypedDocumentString; -export const HasPlayerRegisteredDocument = new TypedDocumentString(` - query hasPlayerRegistered($accountAddress: ContractAddress!) { - s0EternumOwnerModels(where: {address: $accountAddress}) { - totalCount - } -} - `) as unknown as TypedDocumentString; -export const HasPlayerClaimedDocument = new TypedDocumentString(` - query hasPlayerClaimed($accountAddress: ContractAddress!) { - s0EternumLeaderboardRewardClaimedModels(where: {address: $accountAddress}) { - totalCount - } -} - `) as unknown as TypedDocumentString; export const GetLeaderboardEntryDocument = new TypedDocumentString(` query getLeaderboardEntry($accountAddress: ContractAddress!) { s0EternumLeaderboardEntryModels(where: {address: $accountAddress}) { @@ -7570,7 +7964,10 @@ export const GetHyperstructureContributionsDocument = new TypedDocumentString(` } } } - `) as unknown as TypedDocumentString; + `) as unknown as TypedDocumentString< + GetHyperstructureContributionsQuery, + GetHyperstructureContributionsQueryVariables +>; export const GetEpochsDocument = new TypedDocumentString(` query getEpochs { s0EternumEpochModels(limit: 1000) { @@ -7619,4 +8016,4 @@ export const GetEntitiesResourcesDocument = new TypedDocumentString(` } } } - `) as unknown as TypedDocumentString; \ No newline at end of file + `) as unknown as TypedDocumentString; diff --git a/client/apps/landing/src/hooks/gql/index.ts b/client/apps/landing/src/hooks/gql/index.ts index f51599168..0ea4a91cf 100644 --- a/client/apps/landing/src/hooks/gql/index.ts +++ b/client/apps/landing/src/hooks/gql/index.ts @@ -1,2 +1,2 @@ export * from "./fragment-masking"; -export * from "./gql"; \ No newline at end of file +export * from "./gql"; diff --git a/client/apps/landing/src/hooks/helpers/useDonkeyArrivals.tsx b/client/apps/landing/src/hooks/helpers/useDonkeyArrivals.tsx index 735fddf9b..6a3ff596a 100644 --- a/client/apps/landing/src/hooks/helpers/useDonkeyArrivals.tsx +++ b/client/apps/landing/src/hooks/helpers/useDonkeyArrivals.tsx @@ -39,7 +39,6 @@ export function useDonkeyArrivals(realmEntityIds: ID[]) { return batches; }, [realmEntityIds]); - const donkeyQueriesResults = useQueries({ queries: batchedRealmIds.map((realmIds) => ({ queryKey: ["donkeyEntityIds", realmIds], diff --git a/client/apps/landing/src/hooks/helpers/useResources.tsx b/client/apps/landing/src/hooks/helpers/useResources.tsx index a5fddc366..db9148fda 100644 --- a/client/apps/landing/src/hooks/helpers/useResources.tsx +++ b/client/apps/landing/src/hooks/helpers/useResources.tsx @@ -8,18 +8,19 @@ import { GET_ENTITIES_RESOURCES } from "../query/resources"; export function useResourceBalance({ entityId, resourceId }: { entityId?: ID; resourceId?: ResourcesIds }) { const { data, isLoading, error } = useQuery({ queryKey: ["entityResources", entityId], - queryFn: () => - entityId ? execute(GET_ENTITIES_RESOURCES, { entityIds: [entityId] }) : null, + queryFn: () => (entityId ? execute(GET_ENTITIES_RESOURCES, { entityIds: [entityId] }) : null), refetchInterval: 10_000, staleTime: 5_000, }); - const getBalance = useMemo(() => (resourceId: ResourcesIds) => { - return data?.s0EternumResourceModels?.edges?.find( - (r) => r?.node?.resource_type === resourceId - )?.node?.balance ?? 0; - }, [data]); + const getBalance = useMemo( + () => (resourceId: ResourcesIds) => { + return ( + data?.s0EternumResourceModels?.edges?.find((r) => r?.node?.resource_type === resourceId)?.node?.balance ?? 0 + ); + }, + [data], + ); return { data: data?.s0EternumResourceModels?.edges, isLoading, error, getBalance }; } - diff --git a/client/apps/landing/src/hooks/query/capacityConfig.tsx b/client/apps/landing/src/hooks/query/capacityConfig.tsx index 37a17048c..b2faa1901 100644 --- a/client/apps/landing/src/hooks/query/capacityConfig.tsx +++ b/client/apps/landing/src/hooks/query/capacityConfig.tsx @@ -1,20 +1,20 @@ import { graphql } from "../gql"; - + export const GET_CAPACITY_SPEED_CONFIG = graphql(` query getCapacitySpeedConfig($category: Enum!, $entityType: u32!) { - s0EternumCapacityConfigModels(where: {category: $category }) { - edges{ - node { - weight_gram - } + s0EternumCapacityConfigModels(where: { category: $category }) { + edges { + node { + weight_gram } } - s0EternumSpeedConfigModels(where: {entity_type: $entityType }) { - edges{ - node { - sec_per_km - } + } + s0EternumSpeedConfigModels(where: { entity_type: $entityType }) { + edges { + node { + sec_per_km } } + } } `); diff --git a/client/apps/landing/src/hooks/query/entityOwners.tsx b/client/apps/landing/src/hooks/query/entityOwners.tsx index 70b2410fb..7dede3b0a 100644 --- a/client/apps/landing/src/hooks/query/entityOwners.tsx +++ b/client/apps/landing/src/hooks/query/entityOwners.tsx @@ -2,7 +2,7 @@ import { graphql } from "../gql"; export const GET_ETERNUM_ENTITY_OWNERS = graphql(` query getEternumEntityOwner($entityOwnerIds: [u32!]!) { - s0EternumEntityOwnerModels(where: { entity_owner_idIN: $entityOwnerIds}, limit: 10000) { + s0EternumEntityOwnerModels(where: { entity_owner_idIN: $entityOwnerIds }, limit: 10000) { edges { node { entity_id diff --git a/client/apps/landing/src/hooks/useTravel.tsx b/client/apps/landing/src/hooks/useTravel.tsx index 3e863e727..1f7350ab4 100644 --- a/client/apps/landing/src/hooks/useTravel.tsx +++ b/client/apps/landing/src/hooks/useTravel.tsx @@ -10,11 +10,14 @@ export function useTravel(fromId: ID, toId: ID, secPerKm: number, pickup?: boole queryFn: () => execute(GET_ENTITY_DISTANCE, { entityIds: [fromId, toId] }), refetchInterval: 10_000, }); - const computeTravelTime = (fromId: ID, toId: ID, secPerKm: number, pickup?: boolean) => { - const fromPosition = entityPositions?.s0EternumPositionModels?.edges?.find((entity)=> entity?.node?.entity_id == fromId); - const toPosition = entityPositions?.s0EternumPositionModels?.edges?.find((entity)=> entity?.node?.entity_id == toId); + const fromPosition = entityPositions?.s0EternumPositionModels?.edges?.find( + (entity) => entity?.node?.entity_id == fromId, + ); + const toPosition = entityPositions?.s0EternumPositionModels?.edges?.find( + (entity) => entity?.node?.entity_id == toId, + ); if (!fromPosition || !toPosition) return; const distanceFromPosition = calculateDistance( diff --git a/client/apps/landing/src/routeTree.gen.ts b/client/apps/landing/src/routeTree.gen.ts index e46592564..b6bc8e30a 100644 --- a/client/apps/landing/src/routeTree.gen.ts +++ b/client/apps/landing/src/routeTree.gen.ts @@ -8,167 +8,154 @@ // You should NOT make any changes in this file as it will be overwritten. // Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified. -import { createFileRoute } from '@tanstack/react-router' +import { createFileRoute } from "@tanstack/react-router"; // Import Routes -import { Route as rootRoute } from './routes/__root' -import { Route as MyEmpireImport } from './routes/my-empire' +import { Route as rootRoute } from "./routes/__root"; +import { Route as MyEmpireImport } from "./routes/my-empire"; // Create Virtual Routes -const TradeLazyImport = createFileRoute('/trade')() -const SeasonPassesLazyImport = createFileRoute('/season-passes')() -const MintLazyImport = createFileRoute('/mint')() -const ClaimLazyImport = createFileRoute('/claim')() -const IndexLazyImport = createFileRoute('/')() +const TradeLazyImport = createFileRoute("/trade")(); +const SeasonPassesLazyImport = createFileRoute("/season-passes")(); +const MintLazyImport = createFileRoute("/mint")(); +const ClaimLazyImport = createFileRoute("/claim")(); +const IndexLazyImport = createFileRoute("/")(); // Create/Update Routes const TradeLazyRoute = TradeLazyImport.update({ - id: '/trade', - path: '/trade', + id: "/trade", + path: "/trade", getParentRoute: () => rootRoute, -} as any).lazy(() => import('./routes/trade.lazy').then((d) => d.Route)) +} as any).lazy(() => import("./routes/trade.lazy").then((d) => d.Route)); const SeasonPassesLazyRoute = SeasonPassesLazyImport.update({ - id: '/season-passes', - path: '/season-passes', + id: "/season-passes", + path: "/season-passes", getParentRoute: () => rootRoute, -} as any).lazy(() => import('./routes/season-passes.lazy').then((d) => d.Route)) +} as any).lazy(() => import("./routes/season-passes.lazy").then((d) => d.Route)); const MintLazyRoute = MintLazyImport.update({ - id: '/mint', - path: '/mint', + id: "/mint", + path: "/mint", getParentRoute: () => rootRoute, -} as any).lazy(() => import('./routes/mint.lazy').then((d) => d.Route)) +} as any).lazy(() => import("./routes/mint.lazy").then((d) => d.Route)); const ClaimLazyRoute = ClaimLazyImport.update({ - id: '/claim', - path: '/claim', + id: "/claim", + path: "/claim", getParentRoute: () => rootRoute, -} as any).lazy(() => import('./routes/claim.lazy').then((d) => d.Route)) +} as any).lazy(() => import("./routes/claim.lazy").then((d) => d.Route)); const MyEmpireRoute = MyEmpireImport.update({ - id: '/my-empire', - path: '/my-empire', + id: "/my-empire", + path: "/my-empire", getParentRoute: () => rootRoute, -} as any) +} as any); const IndexLazyRoute = IndexLazyImport.update({ - id: '/', - path: '/', + id: "/", + path: "/", getParentRoute: () => rootRoute, -} as any).lazy(() => import('./routes/index.lazy').then((d) => d.Route)) +} as any).lazy(() => import("./routes/index.lazy").then((d) => d.Route)); // Populate the FileRoutesByPath interface -declare module '@tanstack/react-router' { +declare module "@tanstack/react-router" { interface FileRoutesByPath { - '/': { - id: '/' - path: '/' - fullPath: '/' - preLoaderRoute: typeof IndexLazyImport - parentRoute: typeof rootRoute - } - '/my-empire': { - id: '/my-empire' - path: '/my-empire' - fullPath: '/my-empire' - preLoaderRoute: typeof MyEmpireImport - parentRoute: typeof rootRoute - } - '/claim': { - id: '/claim' - path: '/claim' - fullPath: '/claim' - preLoaderRoute: typeof ClaimLazyImport - parentRoute: typeof rootRoute - } - '/mint': { - id: '/mint' - path: '/mint' - fullPath: '/mint' - preLoaderRoute: typeof MintLazyImport - parentRoute: typeof rootRoute - } - '/season-passes': { - id: '/season-passes' - path: '/season-passes' - fullPath: '/season-passes' - preLoaderRoute: typeof SeasonPassesLazyImport - parentRoute: typeof rootRoute - } - '/trade': { - id: '/trade' - path: '/trade' - fullPath: '/trade' - preLoaderRoute: typeof TradeLazyImport - parentRoute: typeof rootRoute - } + "/": { + id: "/"; + path: "/"; + fullPath: "/"; + preLoaderRoute: typeof IndexLazyImport; + parentRoute: typeof rootRoute; + }; + "/my-empire": { + id: "/my-empire"; + path: "/my-empire"; + fullPath: "/my-empire"; + preLoaderRoute: typeof MyEmpireImport; + parentRoute: typeof rootRoute; + }; + "/claim": { + id: "/claim"; + path: "/claim"; + fullPath: "/claim"; + preLoaderRoute: typeof ClaimLazyImport; + parentRoute: typeof rootRoute; + }; + "/mint": { + id: "/mint"; + path: "/mint"; + fullPath: "/mint"; + preLoaderRoute: typeof MintLazyImport; + parentRoute: typeof rootRoute; + }; + "/season-passes": { + id: "/season-passes"; + path: "/season-passes"; + fullPath: "/season-passes"; + preLoaderRoute: typeof SeasonPassesLazyImport; + parentRoute: typeof rootRoute; + }; + "/trade": { + id: "/trade"; + path: "/trade"; + fullPath: "/trade"; + preLoaderRoute: typeof TradeLazyImport; + parentRoute: typeof rootRoute; + }; } } // Create and export the route tree export interface FileRoutesByFullPath { - '/': typeof IndexLazyRoute - '/my-empire': typeof MyEmpireRoute - '/claim': typeof ClaimLazyRoute - '/mint': typeof MintLazyRoute - '/season-passes': typeof SeasonPassesLazyRoute - '/trade': typeof TradeLazyRoute + "/": typeof IndexLazyRoute; + "/my-empire": typeof MyEmpireRoute; + "/claim": typeof ClaimLazyRoute; + "/mint": typeof MintLazyRoute; + "/season-passes": typeof SeasonPassesLazyRoute; + "/trade": typeof TradeLazyRoute; } export interface FileRoutesByTo { - '/': typeof IndexLazyRoute - '/my-empire': typeof MyEmpireRoute - '/claim': typeof ClaimLazyRoute - '/mint': typeof MintLazyRoute - '/season-passes': typeof SeasonPassesLazyRoute - '/trade': typeof TradeLazyRoute + "/": typeof IndexLazyRoute; + "/my-empire": typeof MyEmpireRoute; + "/claim": typeof ClaimLazyRoute; + "/mint": typeof MintLazyRoute; + "/season-passes": typeof SeasonPassesLazyRoute; + "/trade": typeof TradeLazyRoute; } export interface FileRoutesById { - __root__: typeof rootRoute - '/': typeof IndexLazyRoute - '/my-empire': typeof MyEmpireRoute - '/claim': typeof ClaimLazyRoute - '/mint': typeof MintLazyRoute - '/season-passes': typeof SeasonPassesLazyRoute - '/trade': typeof TradeLazyRoute + __root__: typeof rootRoute; + "/": typeof IndexLazyRoute; + "/my-empire": typeof MyEmpireRoute; + "/claim": typeof ClaimLazyRoute; + "/mint": typeof MintLazyRoute; + "/season-passes": typeof SeasonPassesLazyRoute; + "/trade": typeof TradeLazyRoute; } export interface FileRouteTypes { - fileRoutesByFullPath: FileRoutesByFullPath - fullPaths: - | '/' - | '/my-empire' - | '/claim' - | '/mint' - | '/season-passes' - | '/trade' - fileRoutesByTo: FileRoutesByTo - to: '/' | '/my-empire' | '/claim' | '/mint' | '/season-passes' | '/trade' - id: - | '__root__' - | '/' - | '/my-empire' - | '/claim' - | '/mint' - | '/season-passes' - | '/trade' - fileRoutesById: FileRoutesById + fileRoutesByFullPath: FileRoutesByFullPath; + fullPaths: "/" | "/my-empire" | "/claim" | "/mint" | "/season-passes" | "/trade"; + fileRoutesByTo: FileRoutesByTo; + to: "/" | "/my-empire" | "/claim" | "/mint" | "/season-passes" | "/trade"; + id: "__root__" | "/" | "/my-empire" | "/claim" | "/mint" | "/season-passes" | "/trade"; + fileRoutesById: FileRoutesById; } export interface RootRouteChildren { - IndexLazyRoute: typeof IndexLazyRoute - MyEmpireRoute: typeof MyEmpireRoute - ClaimLazyRoute: typeof ClaimLazyRoute - MintLazyRoute: typeof MintLazyRoute - SeasonPassesLazyRoute: typeof SeasonPassesLazyRoute - TradeLazyRoute: typeof TradeLazyRoute + IndexLazyRoute: typeof IndexLazyRoute; + MyEmpireRoute: typeof MyEmpireRoute; + ClaimLazyRoute: typeof ClaimLazyRoute; + MintLazyRoute: typeof MintLazyRoute; + SeasonPassesLazyRoute: typeof SeasonPassesLazyRoute; + TradeLazyRoute: typeof TradeLazyRoute; } const rootRouteChildren: RootRouteChildren = { @@ -178,11 +165,9 @@ const rootRouteChildren: RootRouteChildren = { MintLazyRoute: MintLazyRoute, SeasonPassesLazyRoute: SeasonPassesLazyRoute, TradeLazyRoute: TradeLazyRoute, -} +}; -export const routeTree = rootRoute - ._addFileChildren(rootRouteChildren) - ._addFileTypes() +export const routeTree = rootRoute._addFileChildren(rootRouteChildren)._addFileTypes(); /* ROUTE_MANIFEST_START { diff --git a/client/common/manifests/manifest_dev.json b/client/common/manifests/manifest_dev.json index feadad803..acbe66838 100644 --- a/client/common/manifests/manifest_dev.json +++ b/client/common/manifests/manifest_dev.json @@ -1474,11 +1474,7 @@ "init_calldata": [], "tag": "s0_eternum-bank_systems", "selector": "0x16cf356882260a01771aedaab01f8e3afdab764944c3c4d41c617cd76b91e6a", - "systems": [ - "change_owner_amm_fee", - "change_owner_bridge_fee", - "upgrade" - ] + "systems": ["change_owner_amm_fee", "change_owner_bridge_fee", "upgrade"] }, { "address": "0x1a3169679e32c64f68eb3dadc2795160b27d8dbf030a978708a87fce391fcae", @@ -1679,10 +1675,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_pillage_systems", "selector": "0x9861172f7b864354b6e23d8971f0b054c518337a3cea854724658c43f9f580", - "systems": [ - "battle_pillage", - "upgrade" - ] + "systems": ["battle_pillage", "upgrade"] }, { "address": "0x76ac17d7b4d8d42b313babda68f3a5fbf9a0664609205cedf5198ae3a192c1d", @@ -1973,14 +1966,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_systems", "selector": "0x28fc8bb4b5e0140b71566a257468e491e41a12f2f284cae6d4e731abd862067", - "systems": [ - "battle_start", - "battle_force_start", - "battle_join", - "battle_leave", - "battle_claim", - "upgrade" - ] + "systems": ["battle_start", "battle_force_start", "battle_join", "battle_leave", "battle_claim", "upgrade"] }, { "address": "0x793436e661c06da00e0da2bf2229636f8a022f1bef717a371f5cd2d4b0ad47d", @@ -2357,11 +2343,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_utils_systems", "selector": "0x4199f9a24edfc349a8a16e338daaaea77af951bcc40d636e85107731d52d2b7", - "systems": [ - "leave_battle", - "leave_battle_if_ended", - "upgrade" - ] + "systems": ["leave_battle", "leave_battle_if_ended", "upgrade"] }, { "address": "0x12817bed1bdd05251fc4921f03625f2e142873eaec93d527aff3ed806baf860", @@ -2748,13 +2730,7 @@ "init_calldata": [], "tag": "s0_eternum-building_systems", "selector": "0x5f7b231f89cc7ec90785783e2484266d4b35e7f1488ec406ffea0cf92fac777", - "systems": [ - "create", - "pause_production", - "resume_production", - "destroy", - "upgrade" - ] + "systems": ["create", "pause_production", "resume_production", "destroy", "upgrade"] }, { "address": "0x421446d51cac1e926cb1a2b00ae318b52df71beb737159d5c1d7061030758cf", @@ -4420,10 +4396,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_bank_systems", "selector": "0x436d7ef5fa5753c742f95b4fd3a7722399b309251363684474bfcba389fb607", - "systems": [ - "create_admin_bank", - "upgrade" - ] + "systems": ["create_admin_bank", "upgrade"] }, { "address": "0x729222a8e3757daec72d37dd434a3a44d3c0bddbec95cf087fb1b983b166b1a", @@ -4624,10 +4597,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_realm_systems", "selector": "0x2a2f52f1a66a15e1e6bee3b5ea2d104bc146e82c1625c5421f6f45c44640824", - "systems": [ - "create", - "upgrade" - ] + "systems": ["create", "upgrade"] }, { "address": "0x17410a6c37040ef285251f763799939f69033c69c6d5f9ddb61ff4a139d3f58", @@ -4838,10 +4808,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_resource_systems", "selector": "0x6125379dcbb305b4f4b955271c3c4d472ece9852c3592d9d38a9fbc63fe9025", - "systems": [ - "mint", - "upgrade" - ] + "systems": ["mint", "upgrade"] }, { "address": "0x68a2cb801dc504acb121c7609d13f1f4bea6739dc80c31d789868ebda339067", @@ -5015,9 +4982,7 @@ "init_calldata": [], "tag": "s0_eternum-donkey_systems", "selector": "0x76a0f4e4cdc01c969350b612c38d49d38689d5fde54e4afb3205a4629db83b6", - "systems": [ - "upgrade" - ] + "systems": ["upgrade"] }, { "address": "0x57d514154bb4dc319539d4e338312a41c248fb6a5122f82b2f2e11ddd3e67e4", @@ -5661,14 +5626,7 @@ "init_calldata": [], "tag": "s0_eternum-hyperstructure_systems", "selector": "0x44f825ffb89246cbeda203107846db0efad60bbedb24dc67dbd4a42593e6c82", - "systems": [ - "create", - "contribute_to_construction", - "set_co_owners", - "end_game", - "set_access", - "upgrade" - ] + "systems": ["create", "contribute_to_construction", "set_co_owners", "end_game", "set_access", "upgrade"] }, { "address": "0x29ebe0bfa1989bac75afe636f7e72c6e8742006d5ca0a26f938fa497f37365b", @@ -5937,11 +5895,7 @@ "init_calldata": [], "tag": "s0_eternum-liquidity_systems", "selector": "0x3cc30307c653c6c1ba1a6e99364f57c94360b8f73787d1518eaab02e9d0d6b", - "systems": [ - "add", - "remove", - "upgrade" - ] + "systems": ["add", "remove", "upgrade"] }, { "address": "0x41c98a7b8f03f83ad9d4d24ecddd0fd21d5b2f60a2c0ac815f75f0bb6bf5a52", @@ -6204,11 +6158,7 @@ "init_calldata": [], "tag": "s0_eternum-map_generation_systems", "selector": "0x29daec1bf7e70863ae1f9a4b455a1e12030394562eb21b214c9037f9fb71424", - "systems": [ - "discover_shards_mine", - "add_mercenaries_to_structure", - "upgrade" - ] + "systems": ["discover_shards_mine", "add_mercenaries_to_structure", "upgrade"] }, { "address": "0x4a212c52c4035bc9bd170125216604f406dcd75b41be11d3b4d89047366d84d", @@ -6439,10 +6389,7 @@ "init_calldata": [], "tag": "s0_eternum-map_systems", "selector": "0x27a92961f46c5ac43e19fa2b7d50d169c2776dbb98478a96a8a3050647431cd", - "systems": [ - "explore", - "upgrade" - ] + "systems": ["explore", "upgrade"] }, { "address": "0x7e3bae0e253a0131063b63ee4d7b27b50329c617ae88b82d529a70f1a11c63", @@ -6655,11 +6602,7 @@ "init_calldata": [], "tag": "s0_eternum-name_systems", "selector": "0x57061191efce4db08b753f5d6119a16595a3ac2b91db70e971630c34ff5e16e", - "systems": [ - "set_address_name", - "set_entity_name", - "upgrade" - ] + "systems": ["set_address_name", "set_entity_name", "upgrade"] }, { "address": "0x30516789ee1b822d7b448f01be67cec7bf383d3ac4b2380a09f85ad0765f846", @@ -6860,10 +6803,7 @@ "init_calldata": [], "tag": "s0_eternum-ownership_systems", "selector": "0x419b9f1d9d3cbe8dd78cb553b0e1895fa2d3cfb9e7e578866056fca72f9108b", - "systems": [ - "transfer_ownership", - "upgrade" - ] + "systems": ["transfer_ownership", "upgrade"] }, { "address": "0x1b480f620ea35431ab43dba634795b14f547ef3e77370db6f0a31f2fdc21d86", @@ -7100,12 +7040,7 @@ "init_calldata": [], "tag": "s0_eternum-realm_systems", "selector": "0x6ae6691704d5df34326545ad7d15afebdd83066596af8c0dcb5d216d1ede909", - "systems": [ - "create", - "upgrade_level", - "quest_claim", - "upgrade" - ] + "systems": ["create", "upgrade_level", "quest_claim", "upgrade"] }, { "address": "0x39485580b263e26b208ca689e33f3ea0016d98939b773186eec615d6398dd18", @@ -7408,13 +7343,7 @@ "init_calldata": [], "tag": "s0_eternum-resource_bridge_systems", "selector": "0x5916a4c5e4fb7f1105244015fcc1e9950efab35919af199a4a2c1aef2c3aa61", - "systems": [ - "deposit_initial", - "deposit", - "start_withdraw", - "finish_withdraw", - "upgrade" - ] + "systems": ["deposit_initial", "deposit", "start_withdraw", "finish_withdraw", "upgrade"] }, { "address": "0x2df8fb2bf3f7866aa5a1258df35b9cd21d6a73e040c6cae224ac769fefc2789", @@ -7669,12 +7598,7 @@ "init_calldata": [], "tag": "s0_eternum-resource_systems", "selector": "0x31e8be63af9c072934c219dd6cbd2fea3b49fce2311adceb8a8a8870a760b62", - "systems": [ - "approve", - "send", - "pickup", - "upgrade" - ] + "systems": ["approve", "send", "pickup", "upgrade"] }, { "address": "0x45d09aa925f24a12546f9e791b130aa443469517a670d3666c5276caa57003f", @@ -7907,11 +7831,7 @@ "init_calldata": [], "tag": "s0_eternum-season_systems", "selector": "0x384e61da11b2e476dc992c9556f8d1d42814136a36400b5cb34175de183ac9", - "systems": [ - "register_to_leaderboard", - "claim_leaderboard_rewards", - "upgrade" - ] + "systems": ["register_to_leaderboard", "claim_leaderboard_rewards", "upgrade"] }, { "address": "0x4f92a1d00d3aec8cece60fc2d0fc236fe1d95c54ff0ceb2f393fbc7e0863d8e", @@ -8152,11 +8072,7 @@ "init_calldata": [], "tag": "s0_eternum-swap_systems", "selector": "0x14a06d11e0f26724e8e61c141842f95425009d07620b3c369f9f517d568e591", - "systems": [ - "buy", - "sell", - "upgrade" - ] + "systems": ["buy", "sell", "upgrade"] }, { "address": "0x7e2b1334398fafbe640f34bacae99b649d633417960ee397b6a8fb117fec819", @@ -8451,13 +8367,7 @@ "init_calldata": [], "tag": "s0_eternum-trade_systems", "selector": "0x5272cd9b34062cb8bd8ec92ecca87f92a884d4bd2f5bf6c563265a018ac22a5", - "systems": [ - "create_order", - "accept_order", - "accept_partial_order", - "cancel_order", - "upgrade" - ] + "systems": ["create_order", "accept_order", "accept_partial_order", "cancel_order", "upgrade"] }, { "address": "0x4069c2be57f08fef9f31afc85a5b4c03c208ebdb278b9d853606caa7a9cbee6", @@ -8698,10 +8608,7 @@ "init_calldata": [], "tag": "s0_eternum-travel_systems", "selector": "0x4928d4294639e944ff93869e10cee7533ffd910f5791fc486c04b91f2fcf8fe", - "systems": [ - "travel_hex", - "upgrade" - ] + "systems": ["travel_hex", "upgrade"] }, { "address": "0x26be0ed574aa9ee6f73b53b12f0a199ddbf4ac697470316cdb3d9d1f5680cab", @@ -8990,13 +8897,7 @@ "init_calldata": [], "tag": "s0_eternum-troop_systems", "selector": "0x5f97ab78613558d9346649708e6829b417ad55826ba2e4f7b0fc79ad276180a", - "systems": [ - "army_create", - "army_delete", - "army_buy_troops", - "army_merge_troops", - "upgrade" - ] + "systems": ["army_create", "army_delete", "army_buy_troops", "army_merge_troops", "upgrade"] } ], "models": [ @@ -9687,4 +9588,4 @@ "selector": "0x5a8f3fedb72efc9d358b86574cf362f8ed1ec12a02ca9f276e6190f49191217" } ] -} \ No newline at end of file +} diff --git a/client/common/manifests/manifest_mainnet.json b/client/common/manifests/manifest_mainnet.json index 087fa55df..6c8c0d5a3 100644 --- a/client/common/manifests/manifest_mainnet.json +++ b/client/common/manifests/manifest_mainnet.json @@ -1474,11 +1474,7 @@ "init_calldata": [], "tag": "s0_eternum-bank_systems", "selector": "0x16cf356882260a01771aedaab01f8e3afdab764944c3c4d41c617cd76b91e6a", - "systems": [ - "change_owner_amm_fee", - "change_owner_bridge_fee", - "upgrade" - ] + "systems": ["change_owner_amm_fee", "change_owner_bridge_fee", "upgrade"] }, { "address": "0x4ed3a7c5f53c6e96186eaf1b670bd2e2a3699c08e070aedf4e5fc6ac246ddc1", @@ -1679,10 +1675,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_pillage_systems", "selector": "0x9861172f7b864354b6e23d8971f0b054c518337a3cea854724658c43f9f580", - "systems": [ - "battle_pillage", - "upgrade" - ] + "systems": ["battle_pillage", "upgrade"] }, { "address": "0x2620f65aa2fd72d705306ada1ee7410023a3df03da9291f1ccb744fabfebc0", @@ -2374,11 +2367,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_utils_systems", "selector": "0x4199f9a24edfc349a8a16e338daaaea77af951bcc40d636e85107731d52d2b7", - "systems": [ - "leave_battle", - "leave_battle_if_ended", - "upgrade" - ] + "systems": ["leave_battle", "leave_battle_if_ended", "upgrade"] }, { "address": "0x4b6a35c0c541467674ebb9640113a6d79c6f5a468796e9299b8e484a770032a", @@ -2765,13 +2754,7 @@ "init_calldata": [], "tag": "s0_eternum-building_systems", "selector": "0x5f7b231f89cc7ec90785783e2484266d4b35e7f1488ec406ffea0cf92fac777", - "systems": [ - "create", - "pause_production", - "resume_production", - "destroy", - "upgrade" - ] + "systems": ["create", "pause_production", "resume_production", "destroy", "upgrade"] }, { "address": "0x421446d51cac1e926cb1a2b00ae318b52df71beb737159d5c1d7061030758cf", @@ -4437,10 +4420,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_bank_systems", "selector": "0x436d7ef5fa5753c742f95b4fd3a7722399b309251363684474bfcba389fb607", - "systems": [ - "create_admin_bank", - "upgrade" - ] + "systems": ["create_admin_bank", "upgrade"] }, { "address": "0x729222a8e3757daec72d37dd434a3a44d3c0bddbec95cf087fb1b983b166b1a", @@ -4641,10 +4621,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_realm_systems", "selector": "0x2a2f52f1a66a15e1e6bee3b5ea2d104bc146e82c1625c5421f6f45c44640824", - "systems": [ - "create", - "upgrade" - ] + "systems": ["create", "upgrade"] }, { "address": "0x17410a6c37040ef285251f763799939f69033c69c6d5f9ddb61ff4a139d3f58", @@ -4855,10 +4832,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_resource_systems", "selector": "0x6125379dcbb305b4f4b955271c3c4d472ece9852c3592d9d38a9fbc63fe9025", - "systems": [ - "mint", - "upgrade" - ] + "systems": ["mint", "upgrade"] }, { "address": "0x68a2cb801dc504acb121c7609d13f1f4bea6739dc80c31d789868ebda339067", @@ -5032,9 +5006,7 @@ "init_calldata": [], "tag": "s0_eternum-donkey_systems", "selector": "0x76a0f4e4cdc01c969350b612c38d49d38689d5fde54e4afb3205a4629db83b6", - "systems": [ - "upgrade" - ] + "systems": ["upgrade"] }, { "address": "0x57d514154bb4dc319539d4e338312a41c248fb6a5122f82b2f2e11ddd3e67e4", @@ -5979,11 +5951,7 @@ "init_calldata": [], "tag": "s0_eternum-liquidity_systems", "selector": "0x3cc30307c653c6c1ba1a6e99364f57c94360b8f73787d1518eaab02e9d0d6b", - "systems": [ - "add", - "remove", - "upgrade" - ] + "systems": ["add", "remove", "upgrade"] }, { "address": "0x7f274766f8f7fb0503d3d72b15a4d853f6189402a2ad1c9780fc7a1b017f678", @@ -6264,11 +6232,7 @@ "init_calldata": [], "tag": "s0_eternum-map_generation_systems", "selector": "0x29daec1bf7e70863ae1f9a4b455a1e12030394562eb21b214c9037f9fb71424", - "systems": [ - "discover_shards_mine", - "add_mercenaries_to_structure", - "upgrade" - ] + "systems": ["discover_shards_mine", "add_mercenaries_to_structure", "upgrade"] }, { "address": "0x4a212c52c4035bc9bd170125216604f406dcd75b41be11d3b4d89047366d84d", @@ -6499,10 +6463,7 @@ "init_calldata": [], "tag": "s0_eternum-map_systems", "selector": "0x27a92961f46c5ac43e19fa2b7d50d169c2776dbb98478a96a8a3050647431cd", - "systems": [ - "explore", - "upgrade" - ] + "systems": ["explore", "upgrade"] }, { "address": "0x7e3bae0e253a0131063b63ee4d7b27b50329c617ae88b82d529a70f1a11c63", @@ -6715,11 +6676,7 @@ "init_calldata": [], "tag": "s0_eternum-name_systems", "selector": "0x57061191efce4db08b753f5d6119a16595a3ac2b91db70e971630c34ff5e16e", - "systems": [ - "set_address_name", - "set_entity_name", - "upgrade" - ] + "systems": ["set_address_name", "set_entity_name", "upgrade"] }, { "address": "0x30516789ee1b822d7b448f01be67cec7bf383d3ac4b2380a09f85ad0765f846", @@ -6920,10 +6877,7 @@ "init_calldata": [], "tag": "s0_eternum-ownership_systems", "selector": "0x419b9f1d9d3cbe8dd78cb553b0e1895fa2d3cfb9e7e578866056fca72f9108b", - "systems": [ - "transfer_ownership", - "upgrade" - ] + "systems": ["transfer_ownership", "upgrade"] }, { "address": "0x1b480f620ea35431ab43dba634795b14f547ef3e77370db6f0a31f2fdc21d86", @@ -7160,12 +7114,7 @@ "init_calldata": [], "tag": "s0_eternum-realm_systems", "selector": "0x6ae6691704d5df34326545ad7d15afebdd83066596af8c0dcb5d216d1ede909", - "systems": [ - "create", - "upgrade_level", - "quest_claim", - "upgrade" - ] + "systems": ["create", "upgrade_level", "quest_claim", "upgrade"] }, { "address": "0x691a60b709ca5c1c5ff86824831f84deb26f0f5d07d70c0f807eab48110d2f6", @@ -7468,13 +7417,7 @@ "init_calldata": [], "tag": "s0_eternum-resource_bridge_systems", "selector": "0x5916a4c5e4fb7f1105244015fcc1e9950efab35919af199a4a2c1aef2c3aa61", - "systems": [ - "deposit_initial", - "deposit", - "start_withdraw", - "finish_withdraw", - "upgrade" - ] + "systems": ["deposit_initial", "deposit", "start_withdraw", "finish_withdraw", "upgrade"] }, { "address": "0x42c0303a2119a9e20daa60e83c48221cdf1bb2a4c009bab031d1cd3555a127e", @@ -7729,12 +7672,7 @@ "init_calldata": [], "tag": "s0_eternum-resource_systems", "selector": "0x31e8be63af9c072934c219dd6cbd2fea3b49fce2311adceb8a8a8870a760b62", - "systems": [ - "approve", - "send", - "pickup", - "upgrade" - ] + "systems": ["approve", "send", "pickup", "upgrade"] }, { "address": "0x4b5e65a9617c7ba3c7ea64324ff4338a400adb1a3cfe903b3f8b647cbb59fb7", @@ -7967,11 +7905,7 @@ "init_calldata": [], "tag": "s0_eternum-season_systems", "selector": "0x384e61da11b2e476dc992c9556f8d1d42814136a36400b5cb34175de183ac9", - "systems": [ - "register_to_leaderboard", - "claim_leaderboard_rewards", - "upgrade" - ] + "systems": ["register_to_leaderboard", "claim_leaderboard_rewards", "upgrade"] }, { "address": "0x4f92a1d00d3aec8cece60fc2d0fc236fe1d95c54ff0ceb2f393fbc7e0863d8e", @@ -8212,11 +8146,7 @@ "init_calldata": [], "tag": "s0_eternum-swap_systems", "selector": "0x14a06d11e0f26724e8e61c141842f95425009d07620b3c369f9f517d568e591", - "systems": [ - "buy", - "sell", - "upgrade" - ] + "systems": ["buy", "sell", "upgrade"] }, { "address": "0x7e2b1334398fafbe640f34bacae99b649d633417960ee397b6a8fb117fec819", @@ -8511,13 +8441,7 @@ "init_calldata": [], "tag": "s0_eternum-trade_systems", "selector": "0x5272cd9b34062cb8bd8ec92ecca87f92a884d4bd2f5bf6c563265a018ac22a5", - "systems": [ - "create_order", - "accept_order", - "accept_partial_order", - "cancel_order", - "upgrade" - ] + "systems": ["create_order", "accept_order", "accept_partial_order", "cancel_order", "upgrade"] }, { "address": "0x4069c2be57f08fef9f31afc85a5b4c03c208ebdb278b9d853606caa7a9cbee6", @@ -8758,10 +8682,7 @@ "init_calldata": [], "tag": "s0_eternum-travel_systems", "selector": "0x4928d4294639e944ff93869e10cee7533ffd910f5791fc486c04b91f2fcf8fe", - "systems": [ - "travel_hex", - "upgrade" - ] + "systems": ["travel_hex", "upgrade"] }, { "address": "0x26be0ed574aa9ee6f73b53b12f0a199ddbf4ac697470316cdb3d9d1f5680cab", @@ -9050,13 +8971,7 @@ "init_calldata": [], "tag": "s0_eternum-troop_systems", "selector": "0x5f97ab78613558d9346649708e6829b417ad55826ba2e4f7b0fc79ad276180a", - "systems": [ - "army_create", - "army_delete", - "army_buy_troops", - "army_merge_troops", - "upgrade" - ] + "systems": ["army_create", "army_delete", "army_buy_troops", "army_merge_troops", "upgrade"] } ], "models": [ @@ -9759,4 +9674,4 @@ "selector": "0x5a8f3fedb72efc9d358b86574cf362f8ed1ec12a02ca9f276e6190f49191217" } ] -} \ No newline at end of file +} diff --git a/client/common/manifests/manifest_prod.json b/client/common/manifests/manifest_prod.json index bec32075f..8286aa5fb 100644 --- a/client/common/manifests/manifest_prod.json +++ b/client/common/manifests/manifest_prod.json @@ -1474,11 +1474,7 @@ "init_calldata": [], "tag": "s0_eternum-bank_systems", "selector": "0x16cf356882260a01771aedaab01f8e3afdab764944c3c4d41c617cd76b91e6a", - "systems": [ - "change_owner_amm_fee", - "change_owner_bridge_fee", - "upgrade" - ] + "systems": ["change_owner_amm_fee", "change_owner_bridge_fee", "upgrade"] }, { "address": "0x267b8cc82862b1451652a1606629bcf3ad200973f0ca096493b4693f697c80e", @@ -1679,10 +1675,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_pillage_systems", "selector": "0x9861172f7b864354b6e23d8971f0b054c518337a3cea854724658c43f9f580", - "systems": [ - "battle_pillage", - "upgrade" - ] + "systems": ["battle_pillage", "upgrade"] }, { "address": "0x1fd0b5233b521873898e99517a70f96a5023840692d189476c2550055fb8086", @@ -2374,11 +2367,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_utils_systems", "selector": "0x4199f9a24edfc349a8a16e338daaaea77af951bcc40d636e85107731d52d2b7", - "systems": [ - "leave_battle", - "leave_battle_if_ended", - "upgrade" - ] + "systems": ["leave_battle", "leave_battle_if_ended", "upgrade"] }, { "address": "0x5ad0e42e034430f752a0c4e210c903df016ad10e349dbf63cc82988c99a571e", @@ -2765,13 +2754,7 @@ "init_calldata": [], "tag": "s0_eternum-building_systems", "selector": "0x5f7b231f89cc7ec90785783e2484266d4b35e7f1488ec406ffea0cf92fac777", - "systems": [ - "create", - "pause_production", - "resume_production", - "destroy", - "upgrade" - ] + "systems": ["create", "pause_production", "resume_production", "destroy", "upgrade"] }, { "address": "0x62392a4777dde7362055349c5a2cafc49a1488a4a2bc634e2dbef55807fa2a0", @@ -4437,10 +4420,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_bank_systems", "selector": "0x436d7ef5fa5753c742f95b4fd3a7722399b309251363684474bfcba389fb607", - "systems": [ - "create_admin_bank", - "upgrade" - ] + "systems": ["create_admin_bank", "upgrade"] }, { "address": "0x56c668f4e561ec08a5e6b32064a42855f6ea8693806713f4f04ad2ca38353d2", @@ -4641,10 +4621,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_realm_systems", "selector": "0x2a2f52f1a66a15e1e6bee3b5ea2d104bc146e82c1625c5421f6f45c44640824", - "systems": [ - "create", - "upgrade" - ] + "systems": ["create", "upgrade"] }, { "address": "0x789a850d97d714ca0d2ebef8d61c25cd2342fc310fa10bb3b6c2edad1172351", @@ -4855,10 +4832,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_resource_systems", "selector": "0x6125379dcbb305b4f4b955271c3c4d472ece9852c3592d9d38a9fbc63fe9025", - "systems": [ - "mint", - "upgrade" - ] + "systems": ["mint", "upgrade"] }, { "address": "0x40236e6868cfc14d4a73b3ad4be0df18a7c88877a684be223c1a8593109d7d9", @@ -5032,9 +5006,7 @@ "init_calldata": [], "tag": "s0_eternum-donkey_systems", "selector": "0x76a0f4e4cdc01c969350b612c38d49d38689d5fde54e4afb3205a4629db83b6", - "systems": [ - "upgrade" - ] + "systems": ["upgrade"] }, { "address": "0x3920dbf33145cca955528fee24474def2f7e48b0071c04cd31572216e5abdce", @@ -5979,11 +5951,7 @@ "init_calldata": [], "tag": "s0_eternum-liquidity_systems", "selector": "0x3cc30307c653c6c1ba1a6e99364f57c94360b8f73787d1518eaab02e9d0d6b", - "systems": [ - "add", - "remove", - "upgrade" - ] + "systems": ["add", "remove", "upgrade"] }, { "address": "0x1fd92361d6679473f165797c5285e1c346dc84246798f7e9459bb337531e56f", @@ -6264,11 +6232,7 @@ "init_calldata": [], "tag": "s0_eternum-map_generation_systems", "selector": "0x29daec1bf7e70863ae1f9a4b455a1e12030394562eb21b214c9037f9fb71424", - "systems": [ - "discover_shards_mine", - "add_mercenaries_to_structure", - "upgrade" - ] + "systems": ["discover_shards_mine", "add_mercenaries_to_structure", "upgrade"] }, { "address": "0xe63ce3d808072f67ac366cff1e44ff148eaf4ddd1e836b98a1ba44af66faa3", @@ -6499,10 +6463,7 @@ "init_calldata": [], "tag": "s0_eternum-map_systems", "selector": "0x27a92961f46c5ac43e19fa2b7d50d169c2776dbb98478a96a8a3050647431cd", - "systems": [ - "explore", - "upgrade" - ] + "systems": ["explore", "upgrade"] }, { "address": "0x3e6ad1a5ca5dd74c4abfced52e6649cd7e99763f8aaa695175043cfa5aad8f7", @@ -6715,11 +6676,7 @@ "init_calldata": [], "tag": "s0_eternum-name_systems", "selector": "0x57061191efce4db08b753f5d6119a16595a3ac2b91db70e971630c34ff5e16e", - "systems": [ - "set_address_name", - "set_entity_name", - "upgrade" - ] + "systems": ["set_address_name", "set_entity_name", "upgrade"] }, { "address": "0x368661fcdc42f68583bc09db6642918704fcea2a3c432bfdb508f7194537910", @@ -6920,10 +6877,7 @@ "init_calldata": [], "tag": "s0_eternum-ownership_systems", "selector": "0x419b9f1d9d3cbe8dd78cb553b0e1895fa2d3cfb9e7e578866056fca72f9108b", - "systems": [ - "transfer_ownership", - "upgrade" - ] + "systems": ["transfer_ownership", "upgrade"] }, { "address": "0x395bd73f4abb836bb7eb6dc7f0f761be93596a6d892a118d2b82f77c54618b4", @@ -7160,12 +7114,7 @@ "init_calldata": [], "tag": "s0_eternum-realm_systems", "selector": "0x6ae6691704d5df34326545ad7d15afebdd83066596af8c0dcb5d216d1ede909", - "systems": [ - "create", - "upgrade_level", - "quest_claim", - "upgrade" - ] + "systems": ["create", "upgrade_level", "quest_claim", "upgrade"] }, { "address": "0x1e21e76506aff91e258bbe8cb8c80393faa1dcb72569b4a9ba72eb10c2c01b7", @@ -7468,13 +7417,7 @@ "init_calldata": [], "tag": "s0_eternum-resource_bridge_systems", "selector": "0x5916a4c5e4fb7f1105244015fcc1e9950efab35919af199a4a2c1aef2c3aa61", - "systems": [ - "deposit_initial", - "deposit", - "start_withdraw", - "finish_withdraw", - "upgrade" - ] + "systems": ["deposit_initial", "deposit", "start_withdraw", "finish_withdraw", "upgrade"] }, { "address": "0x3d266b405275aeb27660eeaa4e8d5c3e24f8c3075da67276e0300da1df66c33", @@ -7729,12 +7672,7 @@ "init_calldata": [], "tag": "s0_eternum-resource_systems", "selector": "0x31e8be63af9c072934c219dd6cbd2fea3b49fce2311adceb8a8a8870a760b62", - "systems": [ - "approve", - "send", - "pickup", - "upgrade" - ] + "systems": ["approve", "send", "pickup", "upgrade"] }, { "address": "0x14f385db5b18cd094d9b4961f4d2a4a170e305385e2a3d9c5a1bd7cd499928b", @@ -7967,11 +7905,7 @@ "init_calldata": [], "tag": "s0_eternum-season_systems", "selector": "0x384e61da11b2e476dc992c9556f8d1d42814136a36400b5cb34175de183ac9", - "systems": [ - "register_to_leaderboard", - "claim_leaderboard_rewards", - "upgrade" - ] + "systems": ["register_to_leaderboard", "claim_leaderboard_rewards", "upgrade"] }, { "address": "0x5422c3c15cff91dedd781d6a24228dc7bdd65a0a9130e77375085c4fe6f06d4", @@ -8212,11 +8146,7 @@ "init_calldata": [], "tag": "s0_eternum-swap_systems", "selector": "0x14a06d11e0f26724e8e61c141842f95425009d07620b3c369f9f517d568e591", - "systems": [ - "buy", - "sell", - "upgrade" - ] + "systems": ["buy", "sell", "upgrade"] }, { "address": "0x675662c85d93e590ab147f5af80eb359b3a6cc388f44578b7aebdc2e735b43", @@ -8511,13 +8441,7 @@ "init_calldata": [], "tag": "s0_eternum-trade_systems", "selector": "0x5272cd9b34062cb8bd8ec92ecca87f92a884d4bd2f5bf6c563265a018ac22a5", - "systems": [ - "create_order", - "accept_order", - "accept_partial_order", - "cancel_order", - "upgrade" - ] + "systems": ["create_order", "accept_order", "accept_partial_order", "cancel_order", "upgrade"] }, { "address": "0xef2b5150890396d22c3183a69b22b747ccac4429b5415ec35d9dab635a65b8", @@ -8758,10 +8682,7 @@ "init_calldata": [], "tag": "s0_eternum-travel_systems", "selector": "0x4928d4294639e944ff93869e10cee7533ffd910f5791fc486c04b91f2fcf8fe", - "systems": [ - "travel_hex", - "upgrade" - ] + "systems": ["travel_hex", "upgrade"] }, { "address": "0xc592377a9b924df5d609994a7561dd989254b736d22085c9c78e6979a2969e", @@ -9050,13 +8971,7 @@ "init_calldata": [], "tag": "s0_eternum-troop_systems", "selector": "0x5f97ab78613558d9346649708e6829b417ad55826ba2e4f7b0fc79ad276180a", - "systems": [ - "army_create", - "army_delete", - "army_buy_troops", - "army_merge_troops", - "upgrade" - ] + "systems": ["army_create", "army_delete", "army_buy_troops", "army_merge_troops", "upgrade"] } ], "models": [ @@ -9759,4 +9674,4 @@ "selector": "0x5a8f3fedb72efc9d358b86574cf362f8ed1ec12a02ca9f276e6190f49191217" } ] -} \ No newline at end of file +} diff --git a/client/package.json b/client/package.json index 98f7cd925..94394c8c5 100644 --- a/client/package.json +++ b/client/package.json @@ -10,8 +10,8 @@ "dev": "pnpm --dir ./apps/game dev", "dev:docs": "cd ./apps/game-docs && vocs dev", "dev:landing": "pnpm --dir ./apps/landing dev", - "format": "prettier --write .", - "format:check": "prettier --check .", + "format": "npx prettier --write . --root=..", + "format:check": "npx prettier --check . --root=..", "knip": "npx knip --exclude binaries,dependencies", "lint": "pnpm --dir ./apps/game lint", "lint:fix": "pnpm --dir ./apps/game lint:fix", diff --git a/client/sdk/packages/eternum/src/dojo/createClientComponents.ts b/client/sdk/packages/eternum/src/dojo/createClientComponents.ts index 209247ab6..6cbad7438 100644 --- a/client/sdk/packages/eternum/src/dojo/createClientComponents.ts +++ b/client/sdk/packages/eternum/src/dojo/createClientComponents.ts @@ -3,7 +3,7 @@ import { ContractComponents } from "./contractComponents"; export type ClientComponents = ReturnType; -export function createClientComponents(contractComponents: ContractComponents) { +export function createClientComponents({ contractComponents }: { contractComponents: ContractComponents }) { return { ...contractComponents, Building: overridableComponent(contractComponents.Building), diff --git a/contracts/formula/battles/battle_time.js b/contracts/formula/battles/battle_time.js index 0cb77bac3..f94b4deb3 100644 --- a/contracts/formula/battles/battle_time.js +++ b/contracts/formula/battles/battle_time.js @@ -39,8 +39,14 @@ function runBattle(attacker, defender, config, testCase) { console.log("Defender:", defender); // Calculate full health for both armies - const attackHealth = new Health({ current: attacker.fullHealth(config), lifetime: attacker.fullHealth(config) }); - const defenceHealth = new Health({ current: defender.fullHealth(config), lifetime: defender.fullHealth(config) }); + const attackHealth = new Health({ + current: attacker.fullHealth(config), + lifetime: attacker.fullHealth(config), + }); + const defenceHealth = new Health({ + current: defender.fullHealth(config), + lifetime: defender.fullHealth(config), + }); // Initialize Battle const battle = new Battle(attacker, defender, attackHealth, defenceHealth, config); diff --git a/contracts/manifest_dev.json b/contracts/manifest_dev.json index feadad803..613ac3938 100644 --- a/contracts/manifest_dev.json +++ b/contracts/manifest_dev.json @@ -1474,11 +1474,7 @@ "init_calldata": [], "tag": "s0_eternum-bank_systems", "selector": "0x16cf356882260a01771aedaab01f8e3afdab764944c3c4d41c617cd76b91e6a", - "systems": [ - "change_owner_amm_fee", - "change_owner_bridge_fee", - "upgrade" - ] + "systems": ["change_owner_amm_fee", "change_owner_bridge_fee", "upgrade"] }, { "address": "0x1a3169679e32c64f68eb3dadc2795160b27d8dbf030a978708a87fce391fcae", @@ -1679,10 +1675,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_pillage_systems", "selector": "0x9861172f7b864354b6e23d8971f0b054c518337a3cea854724658c43f9f580", - "systems": [ - "battle_pillage", - "upgrade" - ] + "systems": ["battle_pillage", "upgrade"] }, { "address": "0x76ac17d7b4d8d42b313babda68f3a5fbf9a0664609205cedf5198ae3a192c1d", @@ -2357,11 +2350,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_utils_systems", "selector": "0x4199f9a24edfc349a8a16e338daaaea77af951bcc40d636e85107731d52d2b7", - "systems": [ - "leave_battle", - "leave_battle_if_ended", - "upgrade" - ] + "systems": ["leave_battle", "leave_battle_if_ended", "upgrade"] }, { "address": "0x12817bed1bdd05251fc4921f03625f2e142873eaec93d527aff3ed806baf860", @@ -4420,10 +4409,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_bank_systems", "selector": "0x436d7ef5fa5753c742f95b4fd3a7722399b309251363684474bfcba389fb607", - "systems": [ - "create_admin_bank", - "upgrade" - ] + "systems": ["create_admin_bank", "upgrade"] }, { "address": "0x729222a8e3757daec72d37dd434a3a44d3c0bddbec95cf087fb1b983b166b1a", @@ -4624,10 +4610,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_realm_systems", "selector": "0x2a2f52f1a66a15e1e6bee3b5ea2d104bc146e82c1625c5421f6f45c44640824", - "systems": [ - "create", - "upgrade" - ] + "systems": ["create", "upgrade"] }, { "address": "0x17410a6c37040ef285251f763799939f69033c69c6d5f9ddb61ff4a139d3f58", @@ -4838,10 +4821,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_resource_systems", "selector": "0x6125379dcbb305b4f4b955271c3c4d472ece9852c3592d9d38a9fbc63fe9025", - "systems": [ - "mint", - "upgrade" - ] + "systems": ["mint", "upgrade"] }, { "address": "0x68a2cb801dc504acb121c7609d13f1f4bea6739dc80c31d789868ebda339067", @@ -5015,9 +4995,7 @@ "init_calldata": [], "tag": "s0_eternum-donkey_systems", "selector": "0x76a0f4e4cdc01c969350b612c38d49d38689d5fde54e4afb3205a4629db83b6", - "systems": [ - "upgrade" - ] + "systems": ["upgrade"] }, { "address": "0x57d514154bb4dc319539d4e338312a41c248fb6a5122f82b2f2e11ddd3e67e4", @@ -5937,11 +5915,7 @@ "init_calldata": [], "tag": "s0_eternum-liquidity_systems", "selector": "0x3cc30307c653c6c1ba1a6e99364f57c94360b8f73787d1518eaab02e9d0d6b", - "systems": [ - "add", - "remove", - "upgrade" - ] + "systems": ["add", "remove", "upgrade"] }, { "address": "0x41c98a7b8f03f83ad9d4d24ecddd0fd21d5b2f60a2c0ac815f75f0bb6bf5a52", @@ -6439,10 +6413,7 @@ "init_calldata": [], "tag": "s0_eternum-map_systems", "selector": "0x27a92961f46c5ac43e19fa2b7d50d169c2776dbb98478a96a8a3050647431cd", - "systems": [ - "explore", - "upgrade" - ] + "systems": ["explore", "upgrade"] }, { "address": "0x7e3bae0e253a0131063b63ee4d7b27b50329c617ae88b82d529a70f1a11c63", @@ -6655,11 +6626,7 @@ "init_calldata": [], "tag": "s0_eternum-name_systems", "selector": "0x57061191efce4db08b753f5d6119a16595a3ac2b91db70e971630c34ff5e16e", - "systems": [ - "set_address_name", - "set_entity_name", - "upgrade" - ] + "systems": ["set_address_name", "set_entity_name", "upgrade"] }, { "address": "0x30516789ee1b822d7b448f01be67cec7bf383d3ac4b2380a09f85ad0765f846", @@ -6860,10 +6827,7 @@ "init_calldata": [], "tag": "s0_eternum-ownership_systems", "selector": "0x419b9f1d9d3cbe8dd78cb553b0e1895fa2d3cfb9e7e578866056fca72f9108b", - "systems": [ - "transfer_ownership", - "upgrade" - ] + "systems": ["transfer_ownership", "upgrade"] }, { "address": "0x1b480f620ea35431ab43dba634795b14f547ef3e77370db6f0a31f2fdc21d86", @@ -7100,12 +7064,7 @@ "init_calldata": [], "tag": "s0_eternum-realm_systems", "selector": "0x6ae6691704d5df34326545ad7d15afebdd83066596af8c0dcb5d216d1ede909", - "systems": [ - "create", - "upgrade_level", - "quest_claim", - "upgrade" - ] + "systems": ["create", "upgrade_level", "quest_claim", "upgrade"] }, { "address": "0x39485580b263e26b208ca689e33f3ea0016d98939b773186eec615d6398dd18", @@ -7669,12 +7628,7 @@ "init_calldata": [], "tag": "s0_eternum-resource_systems", "selector": "0x31e8be63af9c072934c219dd6cbd2fea3b49fce2311adceb8a8a8870a760b62", - "systems": [ - "approve", - "send", - "pickup", - "upgrade" - ] + "systems": ["approve", "send", "pickup", "upgrade"] }, { "address": "0x45d09aa925f24a12546f9e791b130aa443469517a670d3666c5276caa57003f", @@ -8152,11 +8106,7 @@ "init_calldata": [], "tag": "s0_eternum-swap_systems", "selector": "0x14a06d11e0f26724e8e61c141842f95425009d07620b3c369f9f517d568e591", - "systems": [ - "buy", - "sell", - "upgrade" - ] + "systems": ["buy", "sell", "upgrade"] }, { "address": "0x7e2b1334398fafbe640f34bacae99b649d633417960ee397b6a8fb117fec819", @@ -8698,10 +8648,7 @@ "init_calldata": [], "tag": "s0_eternum-travel_systems", "selector": "0x4928d4294639e944ff93869e10cee7533ffd910f5791fc486c04b91f2fcf8fe", - "systems": [ - "travel_hex", - "upgrade" - ] + "systems": ["travel_hex", "upgrade"] }, { "address": "0x26be0ed574aa9ee6f73b53b12f0a199ddbf4ac697470316cdb3d9d1f5680cab", @@ -9687,4 +9634,4 @@ "selector": "0x5a8f3fedb72efc9d358b86574cf362f8ed1ec12a02ca9f276e6190f49191217" } ] -} \ No newline at end of file +} diff --git a/contracts/manifest_mainnet.json b/contracts/manifest_mainnet.json index 087fa55df..9a10c6e2f 100644 --- a/contracts/manifest_mainnet.json +++ b/contracts/manifest_mainnet.json @@ -1474,11 +1474,7 @@ "init_calldata": [], "tag": "s0_eternum-bank_systems", "selector": "0x16cf356882260a01771aedaab01f8e3afdab764944c3c4d41c617cd76b91e6a", - "systems": [ - "change_owner_amm_fee", - "change_owner_bridge_fee", - "upgrade" - ] + "systems": ["change_owner_amm_fee", "change_owner_bridge_fee", "upgrade"] }, { "address": "0x4ed3a7c5f53c6e96186eaf1b670bd2e2a3699c08e070aedf4e5fc6ac246ddc1", @@ -1679,10 +1675,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_pillage_systems", "selector": "0x9861172f7b864354b6e23d8971f0b054c518337a3cea854724658c43f9f580", - "systems": [ - "battle_pillage", - "upgrade" - ] + "systems": ["battle_pillage", "upgrade"] }, { "address": "0x2620f65aa2fd72d705306ada1ee7410023a3df03da9291f1ccb744fabfebc0", @@ -2374,11 +2367,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_utils_systems", "selector": "0x4199f9a24edfc349a8a16e338daaaea77af951bcc40d636e85107731d52d2b7", - "systems": [ - "leave_battle", - "leave_battle_if_ended", - "upgrade" - ] + "systems": ["leave_battle", "leave_battle_if_ended", "upgrade"] }, { "address": "0x4b6a35c0c541467674ebb9640113a6d79c6f5a468796e9299b8e484a770032a", @@ -4437,10 +4426,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_bank_systems", "selector": "0x436d7ef5fa5753c742f95b4fd3a7722399b309251363684474bfcba389fb607", - "systems": [ - "create_admin_bank", - "upgrade" - ] + "systems": ["create_admin_bank", "upgrade"] }, { "address": "0x729222a8e3757daec72d37dd434a3a44d3c0bddbec95cf087fb1b983b166b1a", @@ -4641,10 +4627,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_realm_systems", "selector": "0x2a2f52f1a66a15e1e6bee3b5ea2d104bc146e82c1625c5421f6f45c44640824", - "systems": [ - "create", - "upgrade" - ] + "systems": ["create", "upgrade"] }, { "address": "0x17410a6c37040ef285251f763799939f69033c69c6d5f9ddb61ff4a139d3f58", @@ -4855,10 +4838,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_resource_systems", "selector": "0x6125379dcbb305b4f4b955271c3c4d472ece9852c3592d9d38a9fbc63fe9025", - "systems": [ - "mint", - "upgrade" - ] + "systems": ["mint", "upgrade"] }, { "address": "0x68a2cb801dc504acb121c7609d13f1f4bea6739dc80c31d789868ebda339067", @@ -5032,9 +5012,7 @@ "init_calldata": [], "tag": "s0_eternum-donkey_systems", "selector": "0x76a0f4e4cdc01c969350b612c38d49d38689d5fde54e4afb3205a4629db83b6", - "systems": [ - "upgrade" - ] + "systems": ["upgrade"] }, { "address": "0x57d514154bb4dc319539d4e338312a41c248fb6a5122f82b2f2e11ddd3e67e4", @@ -5979,11 +5957,7 @@ "init_calldata": [], "tag": "s0_eternum-liquidity_systems", "selector": "0x3cc30307c653c6c1ba1a6e99364f57c94360b8f73787d1518eaab02e9d0d6b", - "systems": [ - "add", - "remove", - "upgrade" - ] + "systems": ["add", "remove", "upgrade"] }, { "address": "0x7f274766f8f7fb0503d3d72b15a4d853f6189402a2ad1c9780fc7a1b017f678", @@ -6499,10 +6473,7 @@ "init_calldata": [], "tag": "s0_eternum-map_systems", "selector": "0x27a92961f46c5ac43e19fa2b7d50d169c2776dbb98478a96a8a3050647431cd", - "systems": [ - "explore", - "upgrade" - ] + "systems": ["explore", "upgrade"] }, { "address": "0x7e3bae0e253a0131063b63ee4d7b27b50329c617ae88b82d529a70f1a11c63", @@ -6715,11 +6686,7 @@ "init_calldata": [], "tag": "s0_eternum-name_systems", "selector": "0x57061191efce4db08b753f5d6119a16595a3ac2b91db70e971630c34ff5e16e", - "systems": [ - "set_address_name", - "set_entity_name", - "upgrade" - ] + "systems": ["set_address_name", "set_entity_name", "upgrade"] }, { "address": "0x30516789ee1b822d7b448f01be67cec7bf383d3ac4b2380a09f85ad0765f846", @@ -6920,10 +6887,7 @@ "init_calldata": [], "tag": "s0_eternum-ownership_systems", "selector": "0x419b9f1d9d3cbe8dd78cb553b0e1895fa2d3cfb9e7e578866056fca72f9108b", - "systems": [ - "transfer_ownership", - "upgrade" - ] + "systems": ["transfer_ownership", "upgrade"] }, { "address": "0x1b480f620ea35431ab43dba634795b14f547ef3e77370db6f0a31f2fdc21d86", @@ -7160,12 +7124,7 @@ "init_calldata": [], "tag": "s0_eternum-realm_systems", "selector": "0x6ae6691704d5df34326545ad7d15afebdd83066596af8c0dcb5d216d1ede909", - "systems": [ - "create", - "upgrade_level", - "quest_claim", - "upgrade" - ] + "systems": ["create", "upgrade_level", "quest_claim", "upgrade"] }, { "address": "0x691a60b709ca5c1c5ff86824831f84deb26f0f5d07d70c0f807eab48110d2f6", @@ -7729,12 +7688,7 @@ "init_calldata": [], "tag": "s0_eternum-resource_systems", "selector": "0x31e8be63af9c072934c219dd6cbd2fea3b49fce2311adceb8a8a8870a760b62", - "systems": [ - "approve", - "send", - "pickup", - "upgrade" - ] + "systems": ["approve", "send", "pickup", "upgrade"] }, { "address": "0x4b5e65a9617c7ba3c7ea64324ff4338a400adb1a3cfe903b3f8b647cbb59fb7", @@ -8212,11 +8166,7 @@ "init_calldata": [], "tag": "s0_eternum-swap_systems", "selector": "0x14a06d11e0f26724e8e61c141842f95425009d07620b3c369f9f517d568e591", - "systems": [ - "buy", - "sell", - "upgrade" - ] + "systems": ["buy", "sell", "upgrade"] }, { "address": "0x7e2b1334398fafbe640f34bacae99b649d633417960ee397b6a8fb117fec819", @@ -8758,10 +8708,7 @@ "init_calldata": [], "tag": "s0_eternum-travel_systems", "selector": "0x4928d4294639e944ff93869e10cee7533ffd910f5791fc486c04b91f2fcf8fe", - "systems": [ - "travel_hex", - "upgrade" - ] + "systems": ["travel_hex", "upgrade"] }, { "address": "0x26be0ed574aa9ee6f73b53b12f0a199ddbf4ac697470316cdb3d9d1f5680cab", @@ -9759,4 +9706,4 @@ "selector": "0x5a8f3fedb72efc9d358b86574cf362f8ed1ec12a02ca9f276e6190f49191217" } ] -} \ No newline at end of file +} diff --git a/contracts/manifest_prod.json b/contracts/manifest_prod.json index bec32075f..cbc1fed57 100644 --- a/contracts/manifest_prod.json +++ b/contracts/manifest_prod.json @@ -1474,11 +1474,7 @@ "init_calldata": [], "tag": "s0_eternum-bank_systems", "selector": "0x16cf356882260a01771aedaab01f8e3afdab764944c3c4d41c617cd76b91e6a", - "systems": [ - "change_owner_amm_fee", - "change_owner_bridge_fee", - "upgrade" - ] + "systems": ["change_owner_amm_fee", "change_owner_bridge_fee", "upgrade"] }, { "address": "0x267b8cc82862b1451652a1606629bcf3ad200973f0ca096493b4693f697c80e", @@ -1679,10 +1675,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_pillage_systems", "selector": "0x9861172f7b864354b6e23d8971f0b054c518337a3cea854724658c43f9f580", - "systems": [ - "battle_pillage", - "upgrade" - ] + "systems": ["battle_pillage", "upgrade"] }, { "address": "0x1fd0b5233b521873898e99517a70f96a5023840692d189476c2550055fb8086", @@ -2374,11 +2367,7 @@ "init_calldata": [], "tag": "s0_eternum-battle_utils_systems", "selector": "0x4199f9a24edfc349a8a16e338daaaea77af951bcc40d636e85107731d52d2b7", - "systems": [ - "leave_battle", - "leave_battle_if_ended", - "upgrade" - ] + "systems": ["leave_battle", "leave_battle_if_ended", "upgrade"] }, { "address": "0x5ad0e42e034430f752a0c4e210c903df016ad10e349dbf63cc82988c99a571e", @@ -4437,10 +4426,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_bank_systems", "selector": "0x436d7ef5fa5753c742f95b4fd3a7722399b309251363684474bfcba389fb607", - "systems": [ - "create_admin_bank", - "upgrade" - ] + "systems": ["create_admin_bank", "upgrade"] }, { "address": "0x56c668f4e561ec08a5e6b32064a42855f6ea8693806713f4f04ad2ca38353d2", @@ -4641,10 +4627,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_realm_systems", "selector": "0x2a2f52f1a66a15e1e6bee3b5ea2d104bc146e82c1625c5421f6f45c44640824", - "systems": [ - "create", - "upgrade" - ] + "systems": ["create", "upgrade"] }, { "address": "0x789a850d97d714ca0d2ebef8d61c25cd2342fc310fa10bb3b6c2edad1172351", @@ -4855,10 +4838,7 @@ "init_calldata": [], "tag": "s0_eternum-dev_resource_systems", "selector": "0x6125379dcbb305b4f4b955271c3c4d472ece9852c3592d9d38a9fbc63fe9025", - "systems": [ - "mint", - "upgrade" - ] + "systems": ["mint", "upgrade"] }, { "address": "0x40236e6868cfc14d4a73b3ad4be0df18a7c88877a684be223c1a8593109d7d9", @@ -5032,9 +5012,7 @@ "init_calldata": [], "tag": "s0_eternum-donkey_systems", "selector": "0x76a0f4e4cdc01c969350b612c38d49d38689d5fde54e4afb3205a4629db83b6", - "systems": [ - "upgrade" - ] + "systems": ["upgrade"] }, { "address": "0x3920dbf33145cca955528fee24474def2f7e48b0071c04cd31572216e5abdce", @@ -5979,11 +5957,7 @@ "init_calldata": [], "tag": "s0_eternum-liquidity_systems", "selector": "0x3cc30307c653c6c1ba1a6e99364f57c94360b8f73787d1518eaab02e9d0d6b", - "systems": [ - "add", - "remove", - "upgrade" - ] + "systems": ["add", "remove", "upgrade"] }, { "address": "0x1fd92361d6679473f165797c5285e1c346dc84246798f7e9459bb337531e56f", @@ -6499,10 +6473,7 @@ "init_calldata": [], "tag": "s0_eternum-map_systems", "selector": "0x27a92961f46c5ac43e19fa2b7d50d169c2776dbb98478a96a8a3050647431cd", - "systems": [ - "explore", - "upgrade" - ] + "systems": ["explore", "upgrade"] }, { "address": "0x3e6ad1a5ca5dd74c4abfced52e6649cd7e99763f8aaa695175043cfa5aad8f7", @@ -6715,11 +6686,7 @@ "init_calldata": [], "tag": "s0_eternum-name_systems", "selector": "0x57061191efce4db08b753f5d6119a16595a3ac2b91db70e971630c34ff5e16e", - "systems": [ - "set_address_name", - "set_entity_name", - "upgrade" - ] + "systems": ["set_address_name", "set_entity_name", "upgrade"] }, { "address": "0x368661fcdc42f68583bc09db6642918704fcea2a3c432bfdb508f7194537910", @@ -6920,10 +6887,7 @@ "init_calldata": [], "tag": "s0_eternum-ownership_systems", "selector": "0x419b9f1d9d3cbe8dd78cb553b0e1895fa2d3cfb9e7e578866056fca72f9108b", - "systems": [ - "transfer_ownership", - "upgrade" - ] + "systems": ["transfer_ownership", "upgrade"] }, { "address": "0x395bd73f4abb836bb7eb6dc7f0f761be93596a6d892a118d2b82f77c54618b4", @@ -7160,12 +7124,7 @@ "init_calldata": [], "tag": "s0_eternum-realm_systems", "selector": "0x6ae6691704d5df34326545ad7d15afebdd83066596af8c0dcb5d216d1ede909", - "systems": [ - "create", - "upgrade_level", - "quest_claim", - "upgrade" - ] + "systems": ["create", "upgrade_level", "quest_claim", "upgrade"] }, { "address": "0x1e21e76506aff91e258bbe8cb8c80393faa1dcb72569b4a9ba72eb10c2c01b7", @@ -7729,12 +7688,7 @@ "init_calldata": [], "tag": "s0_eternum-resource_systems", "selector": "0x31e8be63af9c072934c219dd6cbd2fea3b49fce2311adceb8a8a8870a760b62", - "systems": [ - "approve", - "send", - "pickup", - "upgrade" - ] + "systems": ["approve", "send", "pickup", "upgrade"] }, { "address": "0x14f385db5b18cd094d9b4961f4d2a4a170e305385e2a3d9c5a1bd7cd499928b", @@ -8212,11 +8166,7 @@ "init_calldata": [], "tag": "s0_eternum-swap_systems", "selector": "0x14a06d11e0f26724e8e61c141842f95425009d07620b3c369f9f517d568e591", - "systems": [ - "buy", - "sell", - "upgrade" - ] + "systems": ["buy", "sell", "upgrade"] }, { "address": "0x675662c85d93e590ab147f5af80eb359b3a6cc388f44578b7aebdc2e735b43", @@ -8758,10 +8708,7 @@ "init_calldata": [], "tag": "s0_eternum-travel_systems", "selector": "0x4928d4294639e944ff93869e10cee7533ffd910f5791fc486c04b91f2fcf8fe", - "systems": [ - "travel_hex", - "upgrade" - ] + "systems": ["travel_hex", "upgrade"] }, { "address": "0xc592377a9b924df5d609994a7561dd989254b736d22085c9c78e6979a2969e", @@ -9759,4 +9706,4 @@ "selector": "0x5a8f3fedb72efc9d358b86574cf362f8ed1ec12a02ca9f276e6190f49191217" } ] -} \ No newline at end of file +} diff --git a/contracts/season_resources/contracts/src/lib.cairo b/contracts/season_resources/contracts/src/lib.cairo index b5eb8421b..2943dbb50 100644 --- a/contracts/season_resources/contracts/src/lib.cairo +++ b/contracts/season_resources/contracts/src/lib.cairo @@ -1 +1 @@ -pub mod contract; \ No newline at end of file +pub mod contract; diff --git a/contracts/src/utils/map/.prettierignore b/contracts/src/utils/map/.prettierignore new file mode 100644 index 000000000..1ef0e1665 --- /dev/null +++ b/contracts/src/utils/map/.prettierignore @@ -0,0 +1,15 @@ +**/target +**/dist + +# ignore lock files +**/*-lock.yaml + +# ignore node_modules +**/node_modules + +# ignore manifests +**/manifests +**/manifest*.json + +# ignore eliza folder +**/eliza \ No newline at end of file diff --git a/contracts/world/manifest_prod.json b/contracts/world/manifest_prod.json index 5ddcdfd78..8ac0179dc 100644 --- a/contracts/world/manifest_prod.json +++ b/contracts/world/manifest_prod.json @@ -1445,12 +1445,9 @@ "init_calldata": [], "tag": "world_0-world", "selector": "0x53c554ac832aace5a7c71baf9977fb56ab535ad1e87955a5929f78e45a07ebd", - "systems": [ - "world", - "upgrade" - ] + "systems": ["world", "upgrade"] } ], "models": [], "events": [] -} \ No newline at end of file +} diff --git a/contracts/world/src/lib.cairo b/contracts/world/src/lib.cairo index d49bd9f83..8d7aa4032 100644 --- a/contracts/world/src/lib.cairo +++ b/contracts/world/src/lib.cairo @@ -5,13 +5,12 @@ pub trait IRealmsWorld { #[dojo::contract] pub mod world { - use starknet::{ContractAddress, get_caller_address}; - use dojo::model::{ModelStorage, ModelValueStorage}; use dojo::event::EventStorage; + use dojo::model::{ModelStorage, ModelValueStorage}; + use starknet::{ContractAddress, get_caller_address}; #[abi(embed_v0)] impl RealmsWorldImpl of super::IRealmsWorld { - fn world(ref self: ContractState) -> ByteArray { "eternal glory awaits for those who seek it" } diff --git a/package.json b/package.json index b637fbdcc..e71eec7ac 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,8 @@ "dev": "pnpm --dir ./client/apps/game dev", "dev:docs": "cd ./client/apps/game-docs && vocs dev", "dev:landing": "pnpm --dir ./client/apps/landing dev", - "format": "pnpm prettier --write .", - "format:check": "pnpm prettier --check .", + "format": "npx prettier --write . --root=..", + "format:check": "npx prettier --check . --root=..", "knip": "npx knip --exclude binaries,dependencies", "lint": "pnpm --recursive run lint", "lint:fix": "pnpm --recursive run lint:fix", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e761a4c97..cafb7b601 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,11 +1,10 @@ -lockfileVersion: '9.0' +lockfileVersion: "9.0" settings: autoInstallPeers: true excludeLinksFromLockfile: false importers: - .: dependencies: colors: @@ -27,16 +26,16 @@ importers: specifier: latest version: 1.0.0-alpha.62(@types/node@20.17.12)(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.1)(terser@5.37.0)(typescript@5.7.2) devDependencies: - '@bibliothecadao/eternum': + "@bibliothecadao/eternum": specifier: workspace:^ version: link:client/sdk/packages/eternum - '@dojoengine/core': + "@dojoengine/core": specifier: 1.0.4-alpha.3.1.0 version: 1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) - '@types/react': + "@types/react": specifier: ^18.3.12 version: 18.3.18 - '@types/react-dom': + "@types/react-dom": specifier: ^18.3.1 version: 18.3.5(@types/react@18.3.18) autoprefixer: @@ -63,55 +62,55 @@ importers: client: dependencies: - '@cartridge/connector': + "@cartridge/connector": specifier: ^0.5.7 version: 0.5.7(encoding@0.1.13)(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(typescript@5.7.2) - '@cartridge/controller': + "@cartridge/controller": specifier: ^0.5.7 version: 0.5.7(encoding@0.1.13) - '@dojoengine/create-burner': + "@dojoengine/create-burner": specifier: 1.0.4-alpha.3.1.0 version: 1.0.4-alpha.3.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) - '@dojoengine/react': + "@dojoengine/react": specifier: 1.0.4-alpha.3.1.0 version: 1.0.4-alpha.3.1.0(@types/node@20.17.12)(@types/react@18.3.18)(@vitest/ui@2.1.8(vitest@2.1.8))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(type-fest@2.19.0)(typescript@5.7.2)(zod@3.24.1) - '@dojoengine/recs': + "@dojoengine/recs": specifier: ^2.0.13 version: 2.0.13(typescript@5.7.2)(zod@3.24.1) - '@dojoengine/state': + "@dojoengine/state": specifier: 1.0.4-alpha.3.1.0 version: 1.0.4-alpha.3.1.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(typescript@5.7.2)(zod@3.24.1) - '@dojoengine/torii-client': + "@dojoengine/torii-client": specifier: 1.0.4-alpha.3.1.0 version: 1.0.4-alpha.3.1.0 - '@dojoengine/torii-wasm': + "@dojoengine/torii-wasm": specifier: 1.0.4-alpha.3.1.0 version: 1.0.4-alpha.3.1.0 - '@dojoengine/utils': + "@dojoengine/utils": specifier: 1.0.4-alpha.3.1.0 version: 1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)(zod@3.24.1) - '@headlessui/react': + "@headlessui/react": specifier: ^2.2.0 version: 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-icons': + "@radix-ui/react-icons": specifier: ^1.3.0 version: 1.3.2(react@18.3.1) - '@radix-ui/react-select': + "@radix-ui/react-select": specifier: ^2.0.0 version: 2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-switch': + "@radix-ui/react-switch": specifier: ^1.1.1 version: 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-tabs': + "@radix-ui/react-tabs": specifier: ^1.1.0 version: 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@starknet-react/chains': + "@starknet-react/chains": specifier: ^3.1.0 version: 3.1.1 - '@starknet-react/core': + "@starknet-react/core": specifier: ^3.5.0 version: 3.6.3(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) - '@tailwindcss/typography': + "@tailwindcss/typography": specifier: ^0.5.13 version: 0.5.16(tailwindcss@3.4.17) class-variance-authority: @@ -154,19 +153,19 @@ importers: specifier: ^3.23.8 version: 3.24.1 devDependencies: - '@svgr/rollup': + "@svgr/rollup": specifier: ^8.1.0 version: 8.1.0(rollup@4.30.1)(typescript@5.7.2) - '@types/node': + "@types/node": specifier: ^20.11.10 version: 20.17.12 - '@types/react': + "@types/react": specifier: ^18.3.3 version: 18.3.18 - '@types/react-dom': + "@types/react-dom": specifier: ^18.3.0 version: 18.3.5(@types/react@18.3.18) - '@vitejs/plugin-react': + "@vitejs/plugin-react": specifier: ^4.3.1 version: 4.3.4(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) globals: @@ -190,11 +189,11 @@ importers: client/apps/balancing: dependencies: - '@tanstack/react-table': + "@tanstack/react-table": specifier: ^8.20.5 version: 8.20.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: - '@eslint/js': + "@eslint/js": specifier: ^9.9.0 version: 9.17.0 eslint-plugin-react-hooks: @@ -211,10 +210,10 @@ importers: client/apps/game: dependencies: - '@latticexyz/utils': + "@latticexyz/utils": specifier: ^2.0.0-next.12 version: 2.2.14 - '@vercel/analytics': + "@vercel/analytics": specifier: ^1.2.2 version: 1.4.1(react@18.3.1) buffer: @@ -266,19 +265,19 @@ importers: specifier: ^4.5.2 version: 4.5.6(@types/react@18.3.18)(react@18.3.1) devDependencies: - '@types/lodash': + "@types/lodash": specifier: ^4.14.202 version: 4.17.14 - '@types/three': + "@types/three": specifier: ^0.163.0 version: 0.163.0 - '@typescript-eslint/eslint-plugin': + "@typescript-eslint/eslint-plugin": specifier: ^7.5.0 version: 7.18.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - '@vitest/coverage-v8': + "@vitest/coverage-v8": specifier: ^2.0.5 version: 2.1.8(vitest@2.1.8(@types/node@20.17.12)(@vitest/ui@2.1.8)(terser@5.37.0)) - '@vitest/ui': + "@vitest/ui": specifier: ^2.0.1 version: 2.1.8(vitest@2.1.8) eslint-config-love: @@ -290,52 +289,52 @@ importers: client/apps/landing: dependencies: - '@ark-project/core': + "@ark-project/core": specifier: 3.0.0-beta.1 version: 3.0.0-beta.1(encoding@0.1.13)(typescript@5.7.2)(viem@2.22.3(typescript@5.7.2)(zod@3.24.1)) - '@ark-project/react': + "@ark-project/react": specifier: 2.0.0-beta.2 version: 2.0.0-beta.2(encoding@0.1.13)(typescript@5.7.2)(viem@2.22.3(typescript@5.7.2)(zod@3.24.1)) - '@graphql-codegen/schema-ast': + "@graphql-codegen/schema-ast": specifier: ^4.1.0 version: 4.1.0(graphql@16.10.0) - '@graphql-typed-document-node/core': + "@graphql-typed-document-node/core": specifier: ^3.2.0 version: 3.2.0(graphql@16.10.0) - '@parcel/watcher': + "@parcel/watcher": specifier: ^2.4.1 version: 2.5.0 - '@radix-ui/react-checkbox': + "@radix-ui/react-checkbox": specifier: ^1.1.2 version: 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-collapsible': + "@radix-ui/react-collapsible": specifier: ^1.1.1 version: 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-dialog': + "@radix-ui/react-dialog": specifier: ^1.1.2 version: 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-dropdown-menu': + "@radix-ui/react-dropdown-menu": specifier: ^2.1.2 version: 2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-label': + "@radix-ui/react-label": specifier: ^2.1.0 version: 2.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-popover': + "@radix-ui/react-popover": specifier: ^1.1.2 version: 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-separator': + "@radix-ui/react-separator": specifier: ^1.1.0 version: 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': + "@radix-ui/react-slot": specifier: ^1.1.0 version: 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-tooltip': + "@radix-ui/react-tooltip": specifier: ^1.1.3 version: 1.1.6(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@tanstack/react-query': + "@tanstack/react-query": specifier: ^5.59.15 version: 5.62.16(react@18.3.1) - '@tanstack/react-router': + "@tanstack/react-router": specifier: ^1.74.0 version: 1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) cmdk: @@ -360,55 +359,55 @@ importers: specifier: ^9.0.3 version: 9.0.4(encoding@0.1.13)(rollup@4.30.1)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) devDependencies: - '@0no-co/graphqlsp': + "@0no-co/graphqlsp": specifier: ^1.12.16 version: 1.12.16(graphql@16.10.0)(typescript@5.7.2) - '@chromatic-com/storybook': + "@chromatic-com/storybook": specifier: ^1.6.1 version: 1.9.0(react@18.3.1) - '@graphql-codegen/cli': + "@graphql-codegen/cli": specifier: 5.0.3 version: 5.0.3(@parcel/watcher@2.5.0)(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0)(typescript@5.7.2) - '@graphql-codegen/client-preset': + "@graphql-codegen/client-preset": specifier: 4.4.0 version: 4.4.0(encoding@0.1.13)(graphql@16.10.0) - '@graphql-codegen/introspection': + "@graphql-codegen/introspection": specifier: 4.0.3 version: 4.0.3(encoding@0.1.13)(graphql@16.10.0) - '@graphql-codegen/typescript-react-query': + "@graphql-codegen/typescript-react-query": specifier: ^6.1.0 version: 6.1.0(encoding@0.1.13)(graphql@16.10.0) - '@storybook/addon-essentials': + "@storybook/addon-essentials": specifier: ^8.3.2 version: 8.4.7(@types/react@18.3.18)(storybook@8.4.7(prettier@3.4.2)) - '@storybook/addon-interactions': + "@storybook/addon-interactions": specifier: ^8.3.2 version: 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/addon-links': + "@storybook/addon-links": specifier: ^8.3.2 version: 8.4.7(react@18.3.1)(storybook@8.4.7(prettier@3.4.2)) - '@storybook/addon-onboarding': + "@storybook/addon-onboarding": specifier: ^8.3.2 version: 8.4.7(react@18.3.1)(storybook@8.4.7(prettier@3.4.2)) - '@storybook/blocks': + "@storybook/blocks": specifier: ^8.3.2 version: 8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2)) - '@storybook/builder-vite': + "@storybook/builder-vite": specifier: ^8.3.2 version: 8.4.7(storybook@8.4.7(prettier@3.4.2))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) - '@storybook/react': + "@storybook/react": specifier: ^8.3.2 version: 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2) - '@storybook/react-vite': + "@storybook/react-vite": specifier: ^8.3.2 version: 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) - '@storybook/test': + "@storybook/test": specifier: ^8.3.2 version: 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@tanstack/router-devtools': + "@tanstack/router-devtools": specifier: ^1.74.0 version: 1.95.1(@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@tanstack/router-plugin': + "@tanstack/router-plugin": specifier: ^1.73.1 version: 1.95.1(@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) @@ -421,19 +420,19 @@ importers: specifier: ^5.0.0 version: 5.7.2 devDependencies: - '@types/bun': + "@types/bun": specifier: latest version: 1.1.15 client/sdk/packages/eternum: dependencies: - '@dojoengine/core': + "@dojoengine/core": specifier: 1.0.0-alpha.24 version: 1.0.0-alpha.24(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) - '@latticexyz/utils': + "@latticexyz/utils": specifier: ^2.0.0-next.12 version: 2.2.14 - '@scure/starknet': + "@scure/starknet": specifier: ^1.1.0 version: 1.1.0 eventemitter3: @@ -443,7 +442,7 @@ importers: specifier: 6.11.0 version: 6.11.0(encoding@0.1.13) devDependencies: - '@types/node': + "@types/node": specifier: ^20.11.10 version: 20.17.12 tsup: @@ -467,2951 +466,4468 @@ importers: contracts/season_resources/scripts/deployment: {} packages: - - '@0no-co/graphql.web@1.0.13': - resolution: {integrity: sha512-jqYxOevheVTU1S36ZdzAkJIdvRp2m3OYIG5SEoKDw5NI8eVwkoI0D/Q3DYNGmXCxkA6CQuoa7zvMiDPTLqUNuw==} + "@0no-co/graphql.web@1.0.13": + resolution: + { + integrity: sha512-jqYxOevheVTU1S36ZdzAkJIdvRp2m3OYIG5SEoKDw5NI8eVwkoI0D/Q3DYNGmXCxkA6CQuoa7zvMiDPTLqUNuw==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: graphql: optional: true - '@0no-co/graphqlsp@1.12.16': - resolution: {integrity: sha512-B5pyYVH93Etv7xjT6IfB7QtMBdaaC07yjbhN6v8H7KgFStMkPvi+oWYBTibMFRMY89qwc9H8YixXg8SXDVgYWw==} + "@0no-co/graphqlsp@1.12.16": + resolution: + { + integrity: sha512-B5pyYVH93Etv7xjT6IfB7QtMBdaaC07yjbhN6v8H7KgFStMkPvi+oWYBTibMFRMY89qwc9H8YixXg8SXDVgYWw==, + } peerDependencies: graphql: ^15.5.0 || ^16.0.0 || ^17.0.0 typescript: ^5.0.0 - '@adobe/css-tools@4.4.1': - resolution: {integrity: sha512-12WGKBQzjUAI4ayyF4IAtfw2QR/IDoqk6jTddXDhtYTJF9ASmoE1zst7cVtP0aL/F1jUJL5r+JxKXKEgHNbEUQ==} - - '@adraffy/ens-normalize@1.10.0': - resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==} - - '@adraffy/ens-normalize@1.11.0': - resolution: {integrity: sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==} - - '@alloc/quick-lru@5.2.0': - resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} - engines: {node: '>=10'} - - '@ampproject/remapping@2.3.0': - resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} - engines: {node: '>=6.0.0'} - - '@apideck/better-ajv-errors@0.3.6': - resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} - engines: {node: '>=10'} - peerDependencies: - ajv: '>=8' - - '@ardatan/relay-compiler@12.0.0': - resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} + "@adobe/css-tools@4.4.1": + resolution: + { + integrity: sha512-12WGKBQzjUAI4ayyF4IAtfw2QR/IDoqk6jTddXDhtYTJF9ASmoE1zst7cVtP0aL/F1jUJL5r+JxKXKEgHNbEUQ==, + } + + "@adraffy/ens-normalize@1.10.0": + resolution: + { + integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==, + } + + "@adraffy/ens-normalize@1.11.0": + resolution: + { + integrity: sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==, + } + + "@alloc/quick-lru@5.2.0": + resolution: + { + integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==, + } + engines: { node: ">=10" } + + "@ampproject/remapping@2.3.0": + resolution: + { + integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==, + } + engines: { node: ">=6.0.0" } + + "@apideck/better-ajv-errors@0.3.6": + resolution: + { + integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==, + } + engines: { node: ">=10" } + peerDependencies: + ajv: ">=8" + + "@ardatan/relay-compiler@12.0.0": + resolution: + { + integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==, + } hasBin: true peerDependencies: - graphql: '*' + graphql: "*" - '@ardatan/sync-fetch@0.0.1': - resolution: {integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==} - engines: {node: '>=14'} + "@ardatan/sync-fetch@0.0.1": + resolution: + { + integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==, + } + engines: { node: ">=14" } - '@ark-project/core@3.0.0-beta.1': - resolution: {integrity: sha512-KqisqFQxYHFq5cdnRy8dz/RjHiqFXUTuOx/gkn1iRBKP1gcrUvBQYJZaZIXl8xSIhI2lhI+/6Boa+JFv50MHIw==} + "@ark-project/core@3.0.0-beta.1": + resolution: + { + integrity: sha512-KqisqFQxYHFq5cdnRy8dz/RjHiqFXUTuOx/gkn1iRBKP1gcrUvBQYJZaZIXl8xSIhI2lhI+/6Boa+JFv50MHIw==, + } peerDependencies: - typescript: '>=5.0.4' - viem: '>=0.3.35' + typescript: ">=5.0.4" + viem: ">=0.3.35" peerDependenciesMeta: typescript: optional: true - '@ark-project/react@2.0.0-beta.2': - resolution: {integrity: sha512-QmnL2Y5ondgYpMWaIcm8nva7/7HPKonHg7QrAXIsVU2N63pwbCbK6sNrksPoZ4PKUFgPUBRbF7/kOwKvwG/uKA==} - - '@babel/code-frame@7.26.2': - resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} - engines: {node: '>=6.9.0'} - - '@babel/compat-data@7.26.3': - resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==} - engines: {node: '>=6.9.0'} - - '@babel/core@7.26.0': - resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} - engines: {node: '>=6.9.0'} - - '@babel/generator@7.26.3': - resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-annotate-as-pure@7.25.9': - resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} - engines: {node: '>=6.9.0'} - - '@babel/helper-compilation-targets@7.25.9': - resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-create-class-features-plugin@7.25.9': - resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-create-regexp-features-plugin@7.26.3': - resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-define-polyfill-provider@0.6.3': - resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - '@babel/helper-member-expression-to-functions@7.25.9': - resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-module-imports@7.25.9': - resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-module-transforms@7.26.0': - resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-optimise-call-expression@7.25.9': - resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-plugin-utils@7.25.9': - resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-remap-async-to-generator@7.25.9': - resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-replace-supers@7.25.9': - resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-skip-transparent-expression-wrappers@7.25.9': - resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@7.25.9': - resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-identifier@7.25.9': - resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-option@7.25.9': - resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-wrap-function@7.25.9': - resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} - engines: {node: '>=6.9.0'} - - '@babel/helpers@7.26.0': - resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} - engines: {node: '>=6.9.0'} - - '@babel/parser@7.26.3': - resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} - engines: {node: '>=6.0.0'} + "@ark-project/react@2.0.0-beta.2": + resolution: + { + integrity: sha512-QmnL2Y5ondgYpMWaIcm8nva7/7HPKonHg7QrAXIsVU2N63pwbCbK6sNrksPoZ4PKUFgPUBRbF7/kOwKvwG/uKA==, + } + + "@babel/code-frame@7.26.2": + resolution: + { + integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/compat-data@7.26.3": + resolution: + { + integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==, + } + engines: { node: ">=6.9.0" } + + "@babel/core@7.26.0": + resolution: + { + integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==, + } + engines: { node: ">=6.9.0" } + + "@babel/generator@7.26.3": + resolution: + { + integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-annotate-as-pure@7.25.9": + resolution: + { + integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-compilation-targets@7.25.9": + resolution: + { + integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-create-class-features-plugin@7.25.9": + resolution: + { + integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/helper-create-regexp-features-plugin@7.26.3": + resolution: + { + integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/helper-define-polyfill-provider@0.6.3": + resolution: + { + integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==, + } + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + + "@babel/helper-member-expression-to-functions@7.25.9": + resolution: + { + integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-module-imports@7.25.9": + resolution: + { + integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-module-transforms@7.26.0": + resolution: + { + integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/helper-optimise-call-expression@7.25.9": + resolution: + { + integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-plugin-utils@7.25.9": + resolution: + { + integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-remap-async-to-generator@7.25.9": + resolution: + { + integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/helper-replace-supers@7.25.9": + resolution: + { + integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/helper-skip-transparent-expression-wrappers@7.25.9": + resolution: + { + integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-string-parser@7.25.9": + resolution: + { + integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-validator-identifier@7.25.9": + resolution: + { + integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-validator-option@7.25.9": + resolution: + { + integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-wrap-function@7.25.9": + resolution: + { + integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==, + } + engines: { node: ">=6.9.0" } + + "@babel/helpers@7.26.0": + resolution: + { + integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==, + } + engines: { node: ">=6.9.0" } + + "@babel/parser@7.26.3": + resolution: + { + integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==, + } + engines: { node: ">=6.0.0" } hasBin: true - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9': - resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9': - resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9': - resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9': - resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9': - resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-proposal-class-properties@7.18.6': - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} - engines: {node: '>=6.9.0'} + "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9": + resolution: + { + integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9": + resolution: + { + integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9": + resolution: + { + integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9": + resolution: + { + integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.13.0 + + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9": + resolution: + { + integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-proposal-class-properties@7.18.6": + resolution: + { + integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==, + } + engines: { node: ">=6.9.0" } deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 - '@babel/plugin-proposal-object-rest-spread@7.20.7': - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} - engines: {node: '>=6.9.0'} + "@babel/plugin-proposal-object-rest-spread@7.20.7": + resolution: + { + integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==, + } + engines: { node: ">=6.9.0" } deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-class-properties@7.12.13': - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-flow@7.26.0': - resolution: {integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-assertions@7.26.0': - resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-attributes@7.26.0': - resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-jsx@7.25.9': - resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-object-rest-spread@7.8.3': - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-typescript@7.25.9': - resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-unicode-sets-regex@7.18.6': - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-arrow-functions@7.25.9': - resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-generator-functions@7.25.9': - resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-to-generator@7.25.9': - resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoped-functions@7.25.9': - resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoping@7.25.9': - resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-properties@7.25.9': - resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-static-block@7.26.0': - resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - - '@babel/plugin-transform-classes@7.25.9': - resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-computed-properties@7.25.9': - resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-destructuring@7.25.9': - resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dotall-regex@7.25.9': - resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-duplicate-keys@7.25.9': - resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9': - resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-dynamic-import@7.25.9': - resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-exponentiation-operator@7.26.3': - resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-export-namespace-from@7.25.9': - resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-flow-strip-types@7.25.9': - resolution: {integrity: sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-for-of@7.25.9': - resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-function-name@7.25.9': - resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-json-strings@7.25.9': - resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-literals@7.25.9': - resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-logical-assignment-operators@7.25.9': - resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-member-expression-literals@7.25.9': - resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-amd@7.25.9': - resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-commonjs@7.26.3': - resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-systemjs@7.25.9': - resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-umd@7.25.9': - resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-named-capturing-groups-regex@7.25.9': - resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-new-target@7.25.9': - resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-nullish-coalescing-operator@7.25.9': - resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-numeric-separator@7.25.9': - resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-rest-spread@7.25.9': - resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-super@7.25.9': - resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-catch-binding@7.25.9': - resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-chaining@7.25.9': - resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-parameters@7.25.9': - resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-methods@7.25.9': - resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-property-in-object@7.25.9': - resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-property-literals@7.25.9': - resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-constant-elements@7.25.9': - resolution: {integrity: sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-display-name@7.25.9': - resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx-development@7.25.9': - resolution: {integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx-self@7.25.9': - resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx-source@7.25.9': - resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx@7.25.9': - resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-pure-annotations@7.25.9': - resolution: {integrity: sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-regenerator@7.25.9': - resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-regexp-modifiers@7.26.0': - resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-reserved-words@7.25.9': - resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-shorthand-properties@7.25.9': - resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-spread@7.25.9': - resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-sticky-regex@7.25.9': - resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-template-literals@7.25.9': - resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typeof-symbol@7.25.9': - resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typescript@7.26.3': - resolution: {integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-escapes@7.25.9': - resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-property-regex@7.25.9': - resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-regex@7.25.9': - resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-sets-regex@7.25.9': - resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/preset-env@7.26.0': - resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-modules@0.1.6-no-external-plugins': - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - - '@babel/preset-react@7.26.3': - resolution: {integrity: sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-typescript@7.26.0': - resolution: {integrity: sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/runtime@7.26.0': - resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} - engines: {node: '>=6.9.0'} - - '@babel/template@7.25.9': - resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} - engines: {node: '>=6.9.0'} - - '@babel/traverse@7.26.4': - resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.26.3': - resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} - engines: {node: '>=6.9.0'} - - '@bcoe/v8-coverage@0.2.3': - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - - '@brillout/libassert@0.5.8': - resolution: {integrity: sha512-u/fu+jTRUdNdbLONGq1plCfh+k2/XjSbGVTfnF3rHnSPZd+ABWp0XinR5ifrFkyGOzMbzv8IiQ44lZ4U6ZGrGA==} - - '@cartridge/account-wasm@0.5.7': - resolution: {integrity: sha512-tUz3fUOAI9RkZPBQ3+ylm4CcVISB0oWTWHeKvm4hmWk2nX7ROxgvLrhxnTH87mRKijma6QRZUhDzEKYsxZTCjQ==} - - '@cartridge/connector@0.5.7': - resolution: {integrity: sha512-fW0hCOVkEopOtExceXSi/lssA7ox7rjdnsAzQVVRRuuSnWbyJ8973+mGHSqKzGFsvaVXzSaowpN4FUbizzIE5g==} - - '@cartridge/controller@0.5.7': - resolution: {integrity: sha512-54+PmRA8nVGCzzAKqHt6NEELa5t/b7ZCE/+nKjEAiO5Pe8qZC9844/RpZY170lerOJYdLouGwB4afgfxpJLs3Q==} - - '@cartridge/penpal@6.2.3': - resolution: {integrity: sha512-K8h9VqBfFPXcAFQNnvgBnejF/dp7249pS4jXu3NhNYR6JqMQxtcrDqfnPmJvbF4ECEBs+8Z2UiwlRQiKt5nNsg==} - - '@cbor-extract/cbor-extract-darwin-arm64@2.2.0': - resolution: {integrity: sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w==} + "@babel/core": ^7.0.0-0 + + "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + resolution: + { + integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-class-properties@7.12.13": + resolution: + { + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-flow@7.26.0": + resolution: + { + integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-import-assertions@7.26.0": + resolution: + { + integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-import-attributes@7.26.0": + resolution: + { + integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-jsx@7.25.9": + resolution: + { + integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-object-rest-spread@7.8.3": + resolution: + { + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-typescript@7.25.9": + resolution: + { + integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-unicode-sets-regex@7.18.6": + resolution: + { + integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-transform-arrow-functions@7.25.9": + resolution: + { + integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-async-generator-functions@7.25.9": + resolution: + { + integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-async-to-generator@7.25.9": + resolution: + { + integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-block-scoped-functions@7.25.9": + resolution: + { + integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-block-scoping@7.25.9": + resolution: + { + integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-class-properties@7.25.9": + resolution: + { + integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-class-static-block@7.26.0": + resolution: + { + integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.12.0 + + "@babel/plugin-transform-classes@7.25.9": + resolution: + { + integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-computed-properties@7.25.9": + resolution: + { + integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-destructuring@7.25.9": + resolution: + { + integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-dotall-regex@7.25.9": + resolution: + { + integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-duplicate-keys@7.25.9": + resolution: + { + integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9": + resolution: + { + integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-transform-dynamic-import@7.25.9": + resolution: + { + integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-exponentiation-operator@7.26.3": + resolution: + { + integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-export-namespace-from@7.25.9": + resolution: + { + integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-flow-strip-types@7.25.9": + resolution: + { + integrity: sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-for-of@7.25.9": + resolution: + { + integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-function-name@7.25.9": + resolution: + { + integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-json-strings@7.25.9": + resolution: + { + integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-literals@7.25.9": + resolution: + { + integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-logical-assignment-operators@7.25.9": + resolution: + { + integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-member-expression-literals@7.25.9": + resolution: + { + integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-modules-amd@7.25.9": + resolution: + { + integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-modules-commonjs@7.26.3": + resolution: + { + integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-modules-systemjs@7.25.9": + resolution: + { + integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-modules-umd@7.25.9": + resolution: + { + integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-named-capturing-groups-regex@7.25.9": + resolution: + { + integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-transform-new-target@7.25.9": + resolution: + { + integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-nullish-coalescing-operator@7.25.9": + resolution: + { + integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-numeric-separator@7.25.9": + resolution: + { + integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-object-rest-spread@7.25.9": + resolution: + { + integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-object-super@7.25.9": + resolution: + { + integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-optional-catch-binding@7.25.9": + resolution: + { + integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-optional-chaining@7.25.9": + resolution: + { + integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-parameters@7.25.9": + resolution: + { + integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-private-methods@7.25.9": + resolution: + { + integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-private-property-in-object@7.25.9": + resolution: + { + integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-property-literals@7.25.9": + resolution: + { + integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-constant-elements@7.25.9": + resolution: + { + integrity: sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-display-name@7.25.9": + resolution: + { + integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-jsx-development@7.25.9": + resolution: + { + integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-jsx-self@7.25.9": + resolution: + { + integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-jsx-source@7.25.9": + resolution: + { + integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-jsx@7.25.9": + resolution: + { + integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-pure-annotations@7.25.9": + resolution: + { + integrity: sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-regenerator@7.25.9": + resolution: + { + integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-regexp-modifiers@7.26.0": + resolution: + { + integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-transform-reserved-words@7.25.9": + resolution: + { + integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-shorthand-properties@7.25.9": + resolution: + { + integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-spread@7.25.9": + resolution: + { + integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-sticky-regex@7.25.9": + resolution: + { + integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-template-literals@7.25.9": + resolution: + { + integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-typeof-symbol@7.25.9": + resolution: + { + integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-typescript@7.26.3": + resolution: + { + integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-escapes@7.25.9": + resolution: + { + integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-property-regex@7.25.9": + resolution: + { + integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-regex@7.25.9": + resolution: + { + integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-sets-regex@7.25.9": + resolution: + { + integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/preset-env@7.26.0": + resolution: + { + integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/preset-modules@0.1.6-no-external-plugins": + resolution: + { + integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 + + "@babel/preset-react@7.26.3": + resolution: + { + integrity: sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/preset-typescript@7.26.0": + resolution: + { + integrity: sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/runtime@7.26.0": + resolution: + { + integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==, + } + engines: { node: ">=6.9.0" } + + "@babel/template@7.25.9": + resolution: + { + integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==, + } + engines: { node: ">=6.9.0" } + + "@babel/traverse@7.26.4": + resolution: + { + integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==, + } + engines: { node: ">=6.9.0" } + + "@babel/types@7.26.3": + resolution: + { + integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==, + } + engines: { node: ">=6.9.0" } + + "@bcoe/v8-coverage@0.2.3": + resolution: + { + integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, + } + + "@brillout/libassert@0.5.8": + resolution: + { + integrity: sha512-u/fu+jTRUdNdbLONGq1plCfh+k2/XjSbGVTfnF3rHnSPZd+ABWp0XinR5ifrFkyGOzMbzv8IiQ44lZ4U6ZGrGA==, + } + + "@cartridge/account-wasm@0.5.7": + resolution: + { + integrity: sha512-tUz3fUOAI9RkZPBQ3+ylm4CcVISB0oWTWHeKvm4hmWk2nX7ROxgvLrhxnTH87mRKijma6QRZUhDzEKYsxZTCjQ==, + } + + "@cartridge/connector@0.5.7": + resolution: + { + integrity: sha512-fW0hCOVkEopOtExceXSi/lssA7ox7rjdnsAzQVVRRuuSnWbyJ8973+mGHSqKzGFsvaVXzSaowpN4FUbizzIE5g==, + } + + "@cartridge/controller@0.5.7": + resolution: + { + integrity: sha512-54+PmRA8nVGCzzAKqHt6NEELa5t/b7ZCE/+nKjEAiO5Pe8qZC9844/RpZY170lerOJYdLouGwB4afgfxpJLs3Q==, + } + + "@cartridge/penpal@6.2.3": + resolution: + { + integrity: sha512-K8h9VqBfFPXcAFQNnvgBnejF/dp7249pS4jXu3NhNYR6JqMQxtcrDqfnPmJvbF4ECEBs+8Z2UiwlRQiKt5nNsg==, + } + + "@cbor-extract/cbor-extract-darwin-arm64@2.2.0": + resolution: + { + integrity: sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w==, + } cpu: [arm64] os: [darwin] - '@cbor-extract/cbor-extract-darwin-x64@2.2.0': - resolution: {integrity: sha512-1liF6fgowph0JxBbYnAS7ZlqNYLf000Qnj4KjqPNW4GViKrEql2MgZnAsExhY9LSy8dnvA4C0qHEBgPrll0z0w==} + "@cbor-extract/cbor-extract-darwin-x64@2.2.0": + resolution: + { + integrity: sha512-1liF6fgowph0JxBbYnAS7ZlqNYLf000Qnj4KjqPNW4GViKrEql2MgZnAsExhY9LSy8dnvA4C0qHEBgPrll0z0w==, + } cpu: [x64] os: [darwin] - '@cbor-extract/cbor-extract-linux-arm64@2.2.0': - resolution: {integrity: sha512-rQvhNmDuhjTVXSPFLolmQ47/ydGOFXtbR7+wgkSY0bdOxCFept1hvg59uiLPT2fVDuJFuEy16EImo5tE2x3RsQ==} + "@cbor-extract/cbor-extract-linux-arm64@2.2.0": + resolution: + { + integrity: sha512-rQvhNmDuhjTVXSPFLolmQ47/ydGOFXtbR7+wgkSY0bdOxCFept1hvg59uiLPT2fVDuJFuEy16EImo5tE2x3RsQ==, + } cpu: [arm64] os: [linux] - '@cbor-extract/cbor-extract-linux-arm@2.2.0': - resolution: {integrity: sha512-QeBcBXk964zOytiedMPQNZr7sg0TNavZeuUCD6ON4vEOU/25+pLhNN6EDIKJ9VLTKaZ7K7EaAriyYQ1NQ05s/Q==} + "@cbor-extract/cbor-extract-linux-arm@2.2.0": + resolution: + { + integrity: sha512-QeBcBXk964zOytiedMPQNZr7sg0TNavZeuUCD6ON4vEOU/25+pLhNN6EDIKJ9VLTKaZ7K7EaAriyYQ1NQ05s/Q==, + } cpu: [arm] os: [linux] - '@cbor-extract/cbor-extract-linux-x64@2.2.0': - resolution: {integrity: sha512-cWLAWtT3kNLHSvP4RKDzSTX9o0wvQEEAj4SKvhWuOVZxiDAeQazr9A+PSiRILK1VYMLeDml89ohxCnUNQNQNCw==} + "@cbor-extract/cbor-extract-linux-x64@2.2.0": + resolution: + { + integrity: sha512-cWLAWtT3kNLHSvP4RKDzSTX9o0wvQEEAj4SKvhWuOVZxiDAeQazr9A+PSiRILK1VYMLeDml89ohxCnUNQNQNCw==, + } cpu: [x64] os: [linux] - '@cbor-extract/cbor-extract-win32-x64@2.2.0': - resolution: {integrity: sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w==} + "@cbor-extract/cbor-extract-win32-x64@2.2.0": + resolution: + { + integrity: sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w==, + } cpu: [x64] os: [win32] - '@chromatic-com/storybook@1.9.0': - resolution: {integrity: sha512-vYQ+TcfktEE3GHnLZXHCzXF/sN9dw+KivH8a5cmPyd9YtQs7fZtHrEgsIjWpYycXiweKMo1Lm1RZsjxk8DH3rA==} - engines: {node: '>=16.0.0', yarn: '>=1.22.18'} - - '@clack/core@0.3.5': - resolution: {integrity: sha512-5cfhQNH+1VQ2xLQlmzXMqUoiaH0lRBq9/CLW9lTyMbuKLC3+xEK01tHVvyut++mLOn5urSHmkm6I0Lg9MaJSTQ==} - - '@clack/prompts@0.7.0': - resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==} + "@chromatic-com/storybook@1.9.0": + resolution: + { + integrity: sha512-vYQ+TcfktEE3GHnLZXHCzXF/sN9dw+KivH8a5cmPyd9YtQs7fZtHrEgsIjWpYycXiweKMo1Lm1RZsjxk8DH3rA==, + } + engines: { node: ">=16.0.0", yarn: ">=1.22.18" } + + "@clack/core@0.3.5": + resolution: + { + integrity: sha512-5cfhQNH+1VQ2xLQlmzXMqUoiaH0lRBq9/CLW9lTyMbuKLC3+xEK01tHVvyut++mLOn5urSHmkm6I0Lg9MaJSTQ==, + } + + "@clack/prompts@0.7.0": + resolution: + { + integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==, + } bundledDependencies: - is-unicode-supported - '@dojoengine/core@1.0.0-alpha.24': - resolution: {integrity: sha512-ABxUtqQOsrTm8HYvR8pICfQ+MX99ZRSW1QkOyjRy4PbB+8A9heq2bMBqVrFhgMYFdEti9Z8aXNbt+uJ985SSqg==} + "@dojoengine/core@1.0.0-alpha.24": + resolution: + { + integrity: sha512-ABxUtqQOsrTm8HYvR8pICfQ+MX99ZRSW1QkOyjRy4PbB+8A9heq2bMBqVrFhgMYFdEti9Z8aXNbt+uJ985SSqg==, + } hasBin: true peerDependencies: starknet: 6.11.0 - '@dojoengine/core@1.0.4-alpha.3.1.0': - resolution: {integrity: sha512-tUlM0xT5ZDVtjM8gETDVl5pdmbGyVtXDZ+O1JOslMT/eyO425UiFH9Ovsc20HFH+Bg8X4RfAxSkuLSmR453HZQ==} + "@dojoengine/core@1.0.4-alpha.3.1.0": + resolution: + { + integrity: sha512-tUlM0xT5ZDVtjM8gETDVl5pdmbGyVtXDZ+O1JOslMT/eyO425UiFH9Ovsc20HFH+Bg8X4RfAxSkuLSmR453HZQ==, + } hasBin: true peerDependencies: starknet: 6.11.0 - '@dojoengine/create-burner@1.0.4-alpha.3.1.0': - resolution: {integrity: sha512-8oU8KOxBoD2v5gdrXVztCC6pA4Mvi8N3Ocjlt7vTqBSiwaxJljX7oW8pQ7JDaSBFSqmSr89erJHGzsQA/CpZlg==} + "@dojoengine/create-burner@1.0.4-alpha.3.1.0": + resolution: + { + integrity: sha512-8oU8KOxBoD2v5gdrXVztCC6pA4Mvi8N3Ocjlt7vTqBSiwaxJljX7oW8pQ7JDaSBFSqmSr89erJHGzsQA/CpZlg==, + } peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 starknet: 6.11.0 - '@dojoengine/react@1.0.4-alpha.3.1.0': - resolution: {integrity: sha512-Ll9saYr/6HJNO1YrBtMealjYvT05UBKT4kCONw5EVxjz+HqHdCU7UqnfmmBPTKs8RTSAP1LeRKnfS7QY84DH5w==} + "@dojoengine/react@1.0.4-alpha.3.1.0": + resolution: + { + integrity: sha512-Ll9saYr/6HJNO1YrBtMealjYvT05UBKT4kCONw5EVxjz+HqHdCU7UqnfmmBPTKs8RTSAP1LeRKnfS7QY84DH5w==, + } peerDependencies: react: ^18.2.0 starknet: 6.11.0 type-fest: ^2.14.0 - '@dojoengine/recs@2.0.13': - resolution: {integrity: sha512-Cgz4Unlnk2FSDoFTYKrJexX/KiSYPMFMxftxQkC+9LUKS5yNGkgFQM7xu4/L1HvpDAenL7NjUmH6ynRAS7Iifw==} + "@dojoengine/recs@2.0.13": + resolution: + { + integrity: sha512-Cgz4Unlnk2FSDoFTYKrJexX/KiSYPMFMxftxQkC+9LUKS5yNGkgFQM7xu4/L1HvpDAenL7NjUmH6ynRAS7Iifw==, + } - '@dojoengine/state@1.0.4-alpha.3.1.0': - resolution: {integrity: sha512-nTKYX09ffpKvXvq2wJA3kNVLc0ZUkvkCg1ha7cajVaauhvSQAXRl1cPQQSf3rGzhqz4EwHpXNn3nGry2qsXdaQ==} + "@dojoengine/state@1.0.4-alpha.3.1.0": + resolution: + { + integrity: sha512-nTKYX09ffpKvXvq2wJA3kNVLc0ZUkvkCg1ha7cajVaauhvSQAXRl1cPQQSf3rGzhqz4EwHpXNn3nGry2qsXdaQ==, + } peerDependencies: starknet: 6.11.0 - '@dojoengine/torii-client@1.0.4-alpha.3.1.0': - resolution: {integrity: sha512-fW8MmcagcqI0BTxkIxmrUw+hBQ7NdoNvhg9FrW2st38jfGMz0txdWdhKXOiUTkpaNXW/C4PeKe9sa9wVn7Bp5g==} + "@dojoengine/torii-client@1.0.4-alpha.3.1.0": + resolution: + { + integrity: sha512-fW8MmcagcqI0BTxkIxmrUw+hBQ7NdoNvhg9FrW2st38jfGMz0txdWdhKXOiUTkpaNXW/C4PeKe9sa9wVn7Bp5g==, + } - '@dojoengine/torii-wasm@1.0.4-alpha.3.1.0': - resolution: {integrity: sha512-17dB5tD+DS1gAUnWCAXKpKo2+FNc6Q06wBgrGHCzKAC+6qWdXCuHqlx1IZjiZbUNm/3kB1VoYO55G46vjsozTQ==} + "@dojoengine/torii-wasm@1.0.4-alpha.3.1.0": + resolution: + { + integrity: sha512-17dB5tD+DS1gAUnWCAXKpKo2+FNc6Q06wBgrGHCzKAC+6qWdXCuHqlx1IZjiZbUNm/3kB1VoYO55G46vjsozTQ==, + } - '@dojoengine/utils@1.0.4-alpha.3.1.0': - resolution: {integrity: sha512-CnudTUoFK7UyNEDuMZ6kHtw+jbx/k/9YZzC/+QgHs2Wm/FW0K3oo+nQMlijE2f/OIFeQYph+g8y1HpUWtevapw==} + "@dojoengine/utils@1.0.4-alpha.3.1.0": + resolution: + { + integrity: sha512-CnudTUoFK7UyNEDuMZ6kHtw+jbx/k/9YZzC/+QgHs2Wm/FW0K3oo+nQMlijE2f/OIFeQYph+g8y1HpUWtevapw==, + } peerDependencies: starknet: 6.11.0 - '@emotion/hash@0.9.2': - resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} - - '@envelop/core@5.0.2': - resolution: {integrity: sha512-tVL6OrMe6UjqLosiE+EH9uxh2TQC0469GwF4tE014ugRaDDKKVWwFwZe0TBMlcyHKh5MD4ZxktWo/1hqUxIuhw==} - engines: {node: '>=18.0.0'} - - '@envelop/types@5.0.0': - resolution: {integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==} - engines: {node: '>=18.0.0'} - - '@esbuild/aix-ppc64@0.19.12': - resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} - engines: {node: '>=12'} + "@emotion/hash@0.9.2": + resolution: + { + integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==, + } + + "@envelop/core@5.0.2": + resolution: + { + integrity: sha512-tVL6OrMe6UjqLosiE+EH9uxh2TQC0469GwF4tE014ugRaDDKKVWwFwZe0TBMlcyHKh5MD4ZxktWo/1hqUxIuhw==, + } + engines: { node: ">=18.0.0" } + + "@envelop/types@5.0.0": + resolution: + { + integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==, + } + engines: { node: ">=18.0.0" } + + "@esbuild/aix-ppc64@0.19.12": + resolution: + { + integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==, + } + engines: { node: ">=12" } cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.21.5': - resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} - engines: {node: '>=12'} + "@esbuild/aix-ppc64@0.21.5": + resolution: + { + integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==, + } + engines: { node: ">=12" } cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.23.1': - resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==} - engines: {node: '>=18'} + "@esbuild/aix-ppc64@0.23.1": + resolution: + { + integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==, + } + engines: { node: ">=18" } cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.24.2': - resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==} - engines: {node: '>=18'} + "@esbuild/aix-ppc64@0.24.2": + resolution: + { + integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==, + } + engines: { node: ">=18" } cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.19.12': - resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==} - engines: {node: '>=12'} + "@esbuild/android-arm64@0.19.12": + resolution: + { + integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==, + } + engines: { node: ">=12" } cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.21.5': - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} - engines: {node: '>=12'} + "@esbuild/android-arm64@0.21.5": + resolution: + { + integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==, + } + engines: { node: ">=12" } cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.23.1': - resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==} - engines: {node: '>=18'} + "@esbuild/android-arm64@0.23.1": + resolution: + { + integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==, + } + engines: { node: ">=18" } cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.24.2': - resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==} - engines: {node: '>=18'} + "@esbuild/android-arm64@0.24.2": + resolution: + { + integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==, + } + engines: { node: ">=18" } cpu: [arm64] os: [android] - '@esbuild/android-arm@0.19.12': - resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==} - engines: {node: '>=12'} + "@esbuild/android-arm@0.19.12": + resolution: + { + integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==, + } + engines: { node: ">=12" } cpu: [arm] os: [android] - '@esbuild/android-arm@0.21.5': - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} - engines: {node: '>=12'} + "@esbuild/android-arm@0.21.5": + resolution: + { + integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==, + } + engines: { node: ">=12" } cpu: [arm] os: [android] - '@esbuild/android-arm@0.23.1': - resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==} - engines: {node: '>=18'} + "@esbuild/android-arm@0.23.1": + resolution: + { + integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==, + } + engines: { node: ">=18" } cpu: [arm] os: [android] - '@esbuild/android-arm@0.24.2': - resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==} - engines: {node: '>=18'} + "@esbuild/android-arm@0.24.2": + resolution: + { + integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==, + } + engines: { node: ">=18" } cpu: [arm] os: [android] - '@esbuild/android-x64@0.19.12': - resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==} - engines: {node: '>=12'} + "@esbuild/android-x64@0.19.12": + resolution: + { + integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==, + } + engines: { node: ">=12" } cpu: [x64] os: [android] - '@esbuild/android-x64@0.21.5': - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} - engines: {node: '>=12'} + "@esbuild/android-x64@0.21.5": + resolution: + { + integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==, + } + engines: { node: ">=12" } cpu: [x64] os: [android] - '@esbuild/android-x64@0.23.1': - resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==} - engines: {node: '>=18'} + "@esbuild/android-x64@0.23.1": + resolution: + { + integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==, + } + engines: { node: ">=18" } cpu: [x64] os: [android] - '@esbuild/android-x64@0.24.2': - resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==} - engines: {node: '>=18'} + "@esbuild/android-x64@0.24.2": + resolution: + { + integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==, + } + engines: { node: ">=18" } cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.19.12': - resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==} - engines: {node: '>=12'} + "@esbuild/darwin-arm64@0.19.12": + resolution: + { + integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==, + } + engines: { node: ">=12" } cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.21.5': - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} - engines: {node: '>=12'} + "@esbuild/darwin-arm64@0.21.5": + resolution: + { + integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==, + } + engines: { node: ">=12" } cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.23.1': - resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==} - engines: {node: '>=18'} + "@esbuild/darwin-arm64@0.23.1": + resolution: + { + integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==, + } + engines: { node: ">=18" } cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.24.2': - resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==} - engines: {node: '>=18'} + "@esbuild/darwin-arm64@0.24.2": + resolution: + { + integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==, + } + engines: { node: ">=18" } cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.19.12': - resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==} - engines: {node: '>=12'} + "@esbuild/darwin-x64@0.19.12": + resolution: + { + integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==, + } + engines: { node: ">=12" } cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.21.5': - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} - engines: {node: '>=12'} + "@esbuild/darwin-x64@0.21.5": + resolution: + { + integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==, + } + engines: { node: ">=12" } cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.23.1': - resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==} - engines: {node: '>=18'} + "@esbuild/darwin-x64@0.23.1": + resolution: + { + integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==, + } + engines: { node: ">=18" } cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.24.2': - resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==} - engines: {node: '>=18'} + "@esbuild/darwin-x64@0.24.2": + resolution: + { + integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==, + } + engines: { node: ">=18" } cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.19.12': - resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==} - engines: {node: '>=12'} + "@esbuild/freebsd-arm64@0.19.12": + resolution: + { + integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==, + } + engines: { node: ">=12" } cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.21.5': - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} - engines: {node: '>=12'} + "@esbuild/freebsd-arm64@0.21.5": + resolution: + { + integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==, + } + engines: { node: ">=12" } cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.23.1': - resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==} - engines: {node: '>=18'} + "@esbuild/freebsd-arm64@0.23.1": + resolution: + { + integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==, + } + engines: { node: ">=18" } cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.24.2': - resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==} - engines: {node: '>=18'} + "@esbuild/freebsd-arm64@0.24.2": + resolution: + { + integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==, + } + engines: { node: ">=18" } cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.19.12': - resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==} - engines: {node: '>=12'} + "@esbuild/freebsd-x64@0.19.12": + resolution: + { + integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==, + } + engines: { node: ">=12" } cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.21.5': - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} - engines: {node: '>=12'} + "@esbuild/freebsd-x64@0.21.5": + resolution: + { + integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.23.1': - resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==} - engines: {node: '>=18'} + "@esbuild/freebsd-x64@0.23.1": + resolution: + { + integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==, + } + engines: { node: ">=18" } cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.24.2': - resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==} - engines: {node: '>=18'} + "@esbuild/freebsd-x64@0.24.2": + resolution: + { + integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==, + } + engines: { node: ">=18" } cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.19.12': - resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==} - engines: {node: '>=12'} + "@esbuild/linux-arm64@0.19.12": + resolution: + { + integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==, + } + engines: { node: ">=12" } cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.21.5': - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} - engines: {node: '>=12'} + "@esbuild/linux-arm64@0.21.5": + resolution: + { + integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==, + } + engines: { node: ">=12" } cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.23.1': - resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==} - engines: {node: '>=18'} + "@esbuild/linux-arm64@0.23.1": + resolution: + { + integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==, + } + engines: { node: ">=18" } cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.24.2': - resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==} - engines: {node: '>=18'} + "@esbuild/linux-arm64@0.24.2": + resolution: + { + integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==, + } + engines: { node: ">=18" } cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.19.12': - resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==} - engines: {node: '>=12'} + "@esbuild/linux-arm@0.19.12": + resolution: + { + integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==, + } + engines: { node: ">=12" } cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.21.5': - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} - engines: {node: '>=12'} + "@esbuild/linux-arm@0.21.5": + resolution: + { + integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==, + } + engines: { node: ">=12" } cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.23.1': - resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==} - engines: {node: '>=18'} + "@esbuild/linux-arm@0.23.1": + resolution: + { + integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==, + } + engines: { node: ">=18" } cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.24.2': - resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==} - engines: {node: '>=18'} + "@esbuild/linux-arm@0.24.2": + resolution: + { + integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==, + } + engines: { node: ">=18" } cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.19.12': - resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==} - engines: {node: '>=12'} + "@esbuild/linux-ia32@0.19.12": + resolution: + { + integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==, + } + engines: { node: ">=12" } cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.21.5': - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} - engines: {node: '>=12'} + "@esbuild/linux-ia32@0.21.5": + resolution: + { + integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==, + } + engines: { node: ">=12" } cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.23.1': - resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==} - engines: {node: '>=18'} + "@esbuild/linux-ia32@0.23.1": + resolution: + { + integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==, + } + engines: { node: ">=18" } cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.24.2': - resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==} - engines: {node: '>=18'} + "@esbuild/linux-ia32@0.24.2": + resolution: + { + integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==, + } + engines: { node: ">=18" } cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.19.12': - resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==} - engines: {node: '>=12'} + "@esbuild/linux-loong64@0.19.12": + resolution: + { + integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==, + } + engines: { node: ">=12" } cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.21.5': - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} - engines: {node: '>=12'} + "@esbuild/linux-loong64@0.21.5": + resolution: + { + integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==, + } + engines: { node: ">=12" } cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.23.1': - resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==} - engines: {node: '>=18'} + "@esbuild/linux-loong64@0.23.1": + resolution: + { + integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==, + } + engines: { node: ">=18" } cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.24.2': - resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==} - engines: {node: '>=18'} + "@esbuild/linux-loong64@0.24.2": + resolution: + { + integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==, + } + engines: { node: ">=18" } cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.19.12': - resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==} - engines: {node: '>=12'} + "@esbuild/linux-mips64el@0.19.12": + resolution: + { + integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==, + } + engines: { node: ">=12" } cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.21.5': - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} - engines: {node: '>=12'} + "@esbuild/linux-mips64el@0.21.5": + resolution: + { + integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==, + } + engines: { node: ">=12" } cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.23.1': - resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==} - engines: {node: '>=18'} + "@esbuild/linux-mips64el@0.23.1": + resolution: + { + integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==, + } + engines: { node: ">=18" } cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.24.2': - resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==} - engines: {node: '>=18'} + "@esbuild/linux-mips64el@0.24.2": + resolution: + { + integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==, + } + engines: { node: ">=18" } cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.19.12': - resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==} - engines: {node: '>=12'} + "@esbuild/linux-ppc64@0.19.12": + resolution: + { + integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==, + } + engines: { node: ">=12" } cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.21.5': - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} - engines: {node: '>=12'} + "@esbuild/linux-ppc64@0.21.5": + resolution: + { + integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==, + } + engines: { node: ">=12" } cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.23.1': - resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==} - engines: {node: '>=18'} + "@esbuild/linux-ppc64@0.23.1": + resolution: + { + integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==, + } + engines: { node: ">=18" } cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.24.2': - resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==} - engines: {node: '>=18'} + "@esbuild/linux-ppc64@0.24.2": + resolution: + { + integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==, + } + engines: { node: ">=18" } cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.19.12': - resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==} - engines: {node: '>=12'} + "@esbuild/linux-riscv64@0.19.12": + resolution: + { + integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==, + } + engines: { node: ">=12" } cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.21.5': - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} - engines: {node: '>=12'} + "@esbuild/linux-riscv64@0.21.5": + resolution: + { + integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==, + } + engines: { node: ">=12" } cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.23.1': - resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==} - engines: {node: '>=18'} + "@esbuild/linux-riscv64@0.23.1": + resolution: + { + integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==, + } + engines: { node: ">=18" } cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.24.2': - resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==} - engines: {node: '>=18'} + "@esbuild/linux-riscv64@0.24.2": + resolution: + { + integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==, + } + engines: { node: ">=18" } cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.19.12': - resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==} - engines: {node: '>=12'} + "@esbuild/linux-s390x@0.19.12": + resolution: + { + integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==, + } + engines: { node: ">=12" } cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.21.5': - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} - engines: {node: '>=12'} + "@esbuild/linux-s390x@0.21.5": + resolution: + { + integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==, + } + engines: { node: ">=12" } cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.23.1': - resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==} - engines: {node: '>=18'} + "@esbuild/linux-s390x@0.23.1": + resolution: + { + integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==, + } + engines: { node: ">=18" } cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.24.2': - resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==} - engines: {node: '>=18'} + "@esbuild/linux-s390x@0.24.2": + resolution: + { + integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==, + } + engines: { node: ">=18" } cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.19.12': - resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==} - engines: {node: '>=12'} + "@esbuild/linux-x64@0.19.12": + resolution: + { + integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==, + } + engines: { node: ">=12" } cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.21.5': - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} - engines: {node: '>=12'} + "@esbuild/linux-x64@0.21.5": + resolution: + { + integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.23.1': - resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==} - engines: {node: '>=18'} + "@esbuild/linux-x64@0.23.1": + resolution: + { + integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==, + } + engines: { node: ">=18" } cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.24.2': - resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==} - engines: {node: '>=18'} + "@esbuild/linux-x64@0.24.2": + resolution: + { + integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==, + } + engines: { node: ">=18" } cpu: [x64] os: [linux] - '@esbuild/netbsd-arm64@0.24.2': - resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==} - engines: {node: '>=18'} + "@esbuild/netbsd-arm64@0.24.2": + resolution: + { + integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==, + } + engines: { node: ">=18" } cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-x64@0.19.12': - resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==} - engines: {node: '>=12'} + "@esbuild/netbsd-x64@0.19.12": + resolution: + { + integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==, + } + engines: { node: ">=12" } cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.21.5': - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} - engines: {node: '>=12'} + "@esbuild/netbsd-x64@0.21.5": + resolution: + { + integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==, + } + engines: { node: ">=12" } cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.23.1': - resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==} - engines: {node: '>=18'} + "@esbuild/netbsd-x64@0.23.1": + resolution: + { + integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==, + } + engines: { node: ">=18" } cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.24.2': - resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==} - engines: {node: '>=18'} + "@esbuild/netbsd-x64@0.24.2": + resolution: + { + integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==, + } + engines: { node: ">=18" } cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.23.1': - resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==} - engines: {node: '>=18'} + "@esbuild/openbsd-arm64@0.23.1": + resolution: + { + integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==, + } + engines: { node: ">=18" } cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-arm64@0.24.2': - resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==} - engines: {node: '>=18'} + "@esbuild/openbsd-arm64@0.24.2": + resolution: + { + integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==, + } + engines: { node: ">=18" } cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-x64@0.19.12': - resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==} - engines: {node: '>=12'} + "@esbuild/openbsd-x64@0.19.12": + resolution: + { + integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==, + } + engines: { node: ">=12" } cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.21.5': - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} - engines: {node: '>=12'} + "@esbuild/openbsd-x64@0.21.5": + resolution: + { + integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==, + } + engines: { node: ">=12" } cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.23.1': - resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==} - engines: {node: '>=18'} + "@esbuild/openbsd-x64@0.23.1": + resolution: + { + integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==, + } + engines: { node: ">=18" } cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.24.2': - resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==} - engines: {node: '>=18'} + "@esbuild/openbsd-x64@0.24.2": + resolution: + { + integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==, + } + engines: { node: ">=18" } cpu: [x64] os: [openbsd] - '@esbuild/sunos-x64@0.19.12': - resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==} - engines: {node: '>=12'} + "@esbuild/sunos-x64@0.19.12": + resolution: + { + integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==, + } + engines: { node: ">=12" } cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.21.5': - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} - engines: {node: '>=12'} + "@esbuild/sunos-x64@0.21.5": + resolution: + { + integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==, + } + engines: { node: ">=12" } cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.23.1': - resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==} - engines: {node: '>=18'} + "@esbuild/sunos-x64@0.23.1": + resolution: + { + integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==, + } + engines: { node: ">=18" } cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.24.2': - resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==} - engines: {node: '>=18'} + "@esbuild/sunos-x64@0.24.2": + resolution: + { + integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==, + } + engines: { node: ">=18" } cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.19.12': - resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==} - engines: {node: '>=12'} + "@esbuild/win32-arm64@0.19.12": + resolution: + { + integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==, + } + engines: { node: ">=12" } cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.21.5': - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} - engines: {node: '>=12'} + "@esbuild/win32-arm64@0.21.5": + resolution: + { + integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==, + } + engines: { node: ">=12" } cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.23.1': - resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==} - engines: {node: '>=18'} + "@esbuild/win32-arm64@0.23.1": + resolution: + { + integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==, + } + engines: { node: ">=18" } cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.24.2': - resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==} - engines: {node: '>=18'} + "@esbuild/win32-arm64@0.24.2": + resolution: + { + integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==, + } + engines: { node: ">=18" } cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.19.12': - resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==} - engines: {node: '>=12'} + "@esbuild/win32-ia32@0.19.12": + resolution: + { + integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==, + } + engines: { node: ">=12" } cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.21.5': - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} - engines: {node: '>=12'} + "@esbuild/win32-ia32@0.21.5": + resolution: + { + integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==, + } + engines: { node: ">=12" } cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.23.1': - resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==} - engines: {node: '>=18'} + "@esbuild/win32-ia32@0.23.1": + resolution: + { + integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==, + } + engines: { node: ">=18" } cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.24.2': - resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==} - engines: {node: '>=18'} + "@esbuild/win32-ia32@0.24.2": + resolution: + { + integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==, + } + engines: { node: ">=18" } cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.19.12': - resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==} - engines: {node: '>=12'} + "@esbuild/win32-x64@0.19.12": + resolution: + { + integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==, + } + engines: { node: ">=12" } cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.21.5': - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} - engines: {node: '>=12'} + "@esbuild/win32-x64@0.21.5": + resolution: + { + integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==, + } + engines: { node: ">=12" } cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.23.1': - resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==} - engines: {node: '>=18'} + "@esbuild/win32-x64@0.23.1": + resolution: + { + integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==, + } + engines: { node: ">=18" } cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.24.2': - resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==} - engines: {node: '>=18'} + "@esbuild/win32-x64@0.24.2": + resolution: + { + integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==, + } + engines: { node: ">=18" } cpu: [x64] os: [win32] - '@eslint-community/eslint-utils@4.4.1': - resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + "@eslint-community/eslint-utils@4.4.1": + resolution: + { + integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.12.1': - resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - - '@eslint/config-array@0.19.1': - resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/core@0.9.1': - resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/eslintrc@3.2.0': - resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/js@9.17.0': - resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/object-schema@2.1.5': - resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/plugin-kit@0.2.4': - resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@floating-ui/core@1.6.9': - resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==} - - '@floating-ui/dom@1.6.13': - resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==} - - '@floating-ui/react-dom@2.1.2': - resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - - '@floating-ui/react@0.26.28': - resolution: {integrity: sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - - '@floating-ui/utils@0.2.9': - resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==} - - '@gql.tada/internal@1.0.8': - resolution: {integrity: sha512-XYdxJhtHC5WtZfdDqtKjcQ4d7R1s0d1rnlSs3OcBEUbYiPoJJfZU7tWsVXuv047Z6msvmr4ompJ7eLSK5Km57g==} + "@eslint-community/regexpp@4.12.1": + resolution: + { + integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==, + } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } + + "@eslint/config-array@0.19.1": + resolution: + { + integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@eslint/core@0.9.1": + resolution: + { + integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@eslint/eslintrc@3.2.0": + resolution: + { + integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@eslint/js@9.17.0": + resolution: + { + integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@eslint/object-schema@2.1.5": + resolution: + { + integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@eslint/plugin-kit@0.2.4": + resolution: + { + integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@floating-ui/core@1.6.9": + resolution: + { + integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==, + } + + "@floating-ui/dom@1.6.13": + resolution: + { + integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==, + } + + "@floating-ui/react-dom@2.1.2": + resolution: + { + integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==, + } + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + + "@floating-ui/react@0.26.28": + resolution: + { + integrity: sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==, + } + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + + "@floating-ui/utils@0.2.9": + resolution: + { + integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==, + } + + "@gql.tada/internal@1.0.8": + resolution: + { + integrity: sha512-XYdxJhtHC5WtZfdDqtKjcQ4d7R1s0d1rnlSs3OcBEUbYiPoJJfZU7tWsVXuv047Z6msvmr4ompJ7eLSK5Km57g==, + } peerDependencies: graphql: ^15.5.0 || ^16.0.0 || ^17.0.0 typescript: ^5.0.0 - '@graphql-codegen/add@5.0.3': - resolution: {integrity: sha512-SxXPmramkth8XtBlAHu4H4jYcYXM/o3p01+psU+0NADQowA8jtYkK6MW5rV6T+CxkEaNZItfSmZRPgIuypcqnA==} + "@graphql-codegen/add@5.0.3": + resolution: + { + integrity: sha512-SxXPmramkth8XtBlAHu4H4jYcYXM/o3p01+psU+0NADQowA8jtYkK6MW5rV6T+CxkEaNZItfSmZRPgIuypcqnA==, + } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/cli@5.0.3': - resolution: {integrity: sha512-ULpF6Sbu2d7vNEOgBtE9avQp2oMgcPY/QBYcCqk0Xru5fz+ISjcovQX29V7CS7y5wWBRzNLoXwJQGeEyWbl05g==} - engines: {node: '>=16'} + "@graphql-codegen/cli@5.0.3": + resolution: + { + integrity: sha512-ULpF6Sbu2d7vNEOgBtE9avQp2oMgcPY/QBYcCqk0Xru5fz+ISjcovQX29V7CS7y5wWBRzNLoXwJQGeEyWbl05g==, + } + engines: { node: ">=16" } hasBin: true peerDependencies: - '@parcel/watcher': ^2.1.0 + "@parcel/watcher": ^2.1.0 graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 peerDependenciesMeta: - '@parcel/watcher': + "@parcel/watcher": optional: true - '@graphql-codegen/client-preset@4.4.0': - resolution: {integrity: sha512-Q0NHFK7KXLhEaRC/k82ge0dHDfeHJEvvDeV0vV3+oSurHNa/lpxQtbK2BqknZe+JDfZ1YOOvYT93XsAkYD+SQg==} - engines: {node: '>=16'} + "@graphql-codegen/client-preset@4.4.0": + resolution: + { + integrity: sha512-Q0NHFK7KXLhEaRC/k82ge0dHDfeHJEvvDeV0vV3+oSurHNa/lpxQtbK2BqknZe+JDfZ1YOOvYT93XsAkYD+SQg==, + } + engines: { node: ">=16" } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/core@4.0.2': - resolution: {integrity: sha512-IZbpkhwVqgizcjNiaVzNAzm/xbWT6YnGgeOLwVjm4KbJn3V2jchVtuzHH09G5/WkkLSk2wgbXNdwjM41JxO6Eg==} + "@graphql-codegen/core@4.0.2": + resolution: + { + integrity: sha512-IZbpkhwVqgizcjNiaVzNAzm/xbWT6YnGgeOLwVjm4KbJn3V2jchVtuzHH09G5/WkkLSk2wgbXNdwjM41JxO6Eg==, + } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/gql-tag-operations@4.0.10': - resolution: {integrity: sha512-WsBEVL3XQdBboFJJL5WxrUjkuo3B7Sa51R9NbT7PKBe0HCNstoouGZIvQJRUubttFCqTTyoFtNsoRSKB+rsRug==} - engines: {node: '>=16'} + "@graphql-codegen/gql-tag-operations@4.0.10": + resolution: + { + integrity: sha512-WsBEVL3XQdBboFJJL5WxrUjkuo3B7Sa51R9NbT7PKBe0HCNstoouGZIvQJRUubttFCqTTyoFtNsoRSKB+rsRug==, + } + engines: { node: ">=16" } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/introspection@4.0.3': - resolution: {integrity: sha512-4cHRG15Zu4MXMF4wTQmywNf4+fkDYv5lTbzraVfliDnB8rJKcaurQpRBi11KVuQUe24YTq/Cfk4uwewfNikWoA==} + "@graphql-codegen/introspection@4.0.3": + resolution: + { + integrity: sha512-4cHRG15Zu4MXMF4wTQmywNf4+fkDYv5lTbzraVfliDnB8rJKcaurQpRBi11KVuQUe24YTq/Cfk4uwewfNikWoA==, + } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/plugin-helpers@2.7.2': - resolution: {integrity: sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==} + "@graphql-codegen/plugin-helpers@2.7.2": + resolution: + { + integrity: sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==, + } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/plugin-helpers@3.1.2': - resolution: {integrity: sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==} + "@graphql-codegen/plugin-helpers@3.1.2": + resolution: + { + integrity: sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==, + } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/plugin-helpers@5.1.0': - resolution: {integrity: sha512-Y7cwEAkprbTKzVIe436TIw4w03jorsMruvCvu0HJkavaKMQbWY+lQ1RIuROgszDbxAyM35twB5/sUvYG5oW+yg==} - engines: {node: '>=16'} + "@graphql-codegen/plugin-helpers@5.1.0": + resolution: + { + integrity: sha512-Y7cwEAkprbTKzVIe436TIw4w03jorsMruvCvu0HJkavaKMQbWY+lQ1RIuROgszDbxAyM35twB5/sUvYG5oW+yg==, + } + engines: { node: ">=16" } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/schema-ast@4.1.0': - resolution: {integrity: sha512-kZVn0z+th9SvqxfKYgztA6PM7mhnSZaj4fiuBWvMTqA+QqQ9BBed6Pz41KuD/jr0gJtnlr2A4++/0VlpVbCTmQ==} + "@graphql-codegen/schema-ast@4.1.0": + resolution: + { + integrity: sha512-kZVn0z+th9SvqxfKYgztA6PM7mhnSZaj4fiuBWvMTqA+QqQ9BBed6Pz41KuD/jr0gJtnlr2A4++/0VlpVbCTmQ==, + } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/typed-document-node@5.0.12': - resolution: {integrity: sha512-Wsbc1AqC+MFp3maWPzrmmyHLuWCPB63qBBFLTKtO6KSsnn0KnLocBp475wkfBZnFISFvzwpJ0e6LV71gKfTofQ==} - engines: {node: '>=16'} + "@graphql-codegen/typed-document-node@5.0.12": + resolution: + { + integrity: sha512-Wsbc1AqC+MFp3maWPzrmmyHLuWCPB63qBBFLTKtO6KSsnn0KnLocBp475wkfBZnFISFvzwpJ0e6LV71gKfTofQ==, + } + engines: { node: ">=16" } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/typescript-operations@4.4.0': - resolution: {integrity: sha512-oVlos2ySx8xIbbe8r5ZI6mOpI+OTeP14RmS2MchBJ6DL+S9G16O6+9V3Y8V22fTnmBTZkTfAAaBv4HYhhDGWVA==} - engines: {node: '>=16'} + "@graphql-codegen/typescript-operations@4.4.0": + resolution: + { + integrity: sha512-oVlos2ySx8xIbbe8r5ZI6mOpI+OTeP14RmS2MchBJ6DL+S9G16O6+9V3Y8V22fTnmBTZkTfAAaBv4HYhhDGWVA==, + } + engines: { node: ">=16" } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/typescript-react-query@6.1.0': - resolution: {integrity: sha512-SpaQ13fOZmog/xjgKnb7/G1CZSK54wopEbPBSav0IHN99iHaA4lJi6xJJoWrlDutOPgB26KAfGEXTD+lTm9esg==} - engines: {node: '>= 16.0.0'} + "@graphql-codegen/typescript-react-query@6.1.0": + resolution: + { + integrity: sha512-SpaQ13fOZmog/xjgKnb7/G1CZSK54wopEbPBSav0IHN99iHaA4lJi6xJJoWrlDutOPgB26KAfGEXTD+lTm9esg==, + } + engines: { node: ">= 16.0.0" } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/typescript@4.1.2': - resolution: {integrity: sha512-GhPgfxgWEkBrvKR2y77OThus3K8B6U3ESo68l7+sHH1XiL2WapK5DdClViblJWKQerJRjfJu8tcaxQ8Wpk6Ogw==} - engines: {node: '>=16'} + "@graphql-codegen/typescript@4.1.2": + resolution: + { + integrity: sha512-GhPgfxgWEkBrvKR2y77OThus3K8B6U3ESo68l7+sHH1XiL2WapK5DdClViblJWKQerJRjfJu8tcaxQ8Wpk6Ogw==, + } + engines: { node: ">=16" } peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/visitor-plugin-common@2.13.1': - resolution: {integrity: sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==} + "@graphql-codegen/visitor-plugin-common@2.13.1": + resolution: + { + integrity: sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==, + } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/visitor-plugin-common@5.4.0': - resolution: {integrity: sha512-tL7hOrO+4MiNfDiHewhRQCiH9GTAh0M9Y/BZxYGGEdnrfGgqK5pCxtjq7EY/L19VGIyU7hhzYTQ0r1HzEbB4Jw==} - engines: {node: '>=16'} + "@graphql-codegen/visitor-plugin-common@5.4.0": + resolution: + { + integrity: sha512-tL7hOrO+4MiNfDiHewhRQCiH9GTAh0M9Y/BZxYGGEdnrfGgqK5pCxtjq7EY/L19VGIyU7hhzYTQ0r1HzEbB4Jw==, + } + engines: { node: ">=16" } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/visitor-plugin-common@5.6.0': - resolution: {integrity: sha512-PowcVPJbUqMC9xTJ/ZRX1p/fsdMZREc+69CM1YY+AlFng2lL0zsdBskFJSRoviQk2Ch9IPhKGyHxlJCy9X22tg==} - engines: {node: '>=16'} + "@graphql-codegen/visitor-plugin-common@5.6.0": + resolution: + { + integrity: sha512-PowcVPJbUqMC9xTJ/ZRX1p/fsdMZREc+69CM1YY+AlFng2lL0zsdBskFJSRoviQk2Ch9IPhKGyHxlJCy9X22tg==, + } + engines: { node: ">=16" } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-hive/gateway-abort-signal-any@0.0.3': - resolution: {integrity: sha512-TLYXRiK1DxkGXEdVrwbEtQ4JrsxJ4d/zXBeTzNzvuU+doTzot0wreFgrmmOq+bvqg/E6yMs1kOvBYz477gyMjA==} - engines: {node: '>=18.0.0'} + "@graphql-hive/gateway-abort-signal-any@0.0.3": + resolution: + { + integrity: sha512-TLYXRiK1DxkGXEdVrwbEtQ4JrsxJ4d/zXBeTzNzvuU+doTzot0wreFgrmmOq+bvqg/E6yMs1kOvBYz477gyMjA==, + } + engines: { node: ">=18.0.0" } peerDependencies: graphql: ^15.0.0 || ^16.9.0 || ^17.0.0 - '@graphql-tools/apollo-engine-loader@8.0.12': - resolution: {integrity: sha512-oPGdfixQ1/AryEywVFqVcuTheRVUjClyS04r2UUszbgF3+BlUIleGYG6LhGhMwwb1P9E8csAiFwzzFQWPzJCSQ==} - engines: {node: '>=16.0.0'} + "@graphql-tools/apollo-engine-loader@8.0.12": + resolution: + { + integrity: sha512-oPGdfixQ1/AryEywVFqVcuTheRVUjClyS04r2UUszbgF3+BlUIleGYG6LhGhMwwb1P9E8csAiFwzzFQWPzJCSQ==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/batch-execute@9.0.11': - resolution: {integrity: sha512-v9b618cj3hIrRGTDrOotYzpK+ZigvNcKdXK3LNBM4g/uA7pND0d4GOnuOSBQGKKN6kT/1nsz4ZpUxCoUvWPbzg==} - engines: {node: '>=18.0.0'} + "@graphql-tools/batch-execute@9.0.11": + resolution: + { + integrity: sha512-v9b618cj3hIrRGTDrOotYzpK+ZigvNcKdXK3LNBM4g/uA7pND0d4GOnuOSBQGKKN6kT/1nsz4ZpUxCoUvWPbzg==, + } + engines: { node: ">=18.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/code-file-loader@8.1.13': - resolution: {integrity: sha512-zEj+DJhZ8vInnCDeEcyim+LJiROPERqTCZdwHGQXKZXqab1dpyqTiIU+rjWmNUJFrqrLY15gLzrhNSLmDGDdUA==} - engines: {node: '>=16.0.0'} + "@graphql-tools/code-file-loader@8.1.13": + resolution: + { + integrity: sha512-zEj+DJhZ8vInnCDeEcyim+LJiROPERqTCZdwHGQXKZXqab1dpyqTiIU+rjWmNUJFrqrLY15gLzrhNSLmDGDdUA==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/delegate@10.2.9': - resolution: {integrity: sha512-JlD/IdC26tyqopYvgXo48XwlDnpYPVs523dq5tg/u8kxJe3PtBmEUoE6EQ4CEMk0mB/r5ck+ZXTHt/wiOCWKhw==} - engines: {node: '>=18.0.0'} + "@graphql-tools/delegate@10.2.9": + resolution: + { + integrity: sha512-JlD/IdC26tyqopYvgXo48XwlDnpYPVs523dq5tg/u8kxJe3PtBmEUoE6EQ4CEMk0mB/r5ck+ZXTHt/wiOCWKhw==, + } + engines: { node: ">=18.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/documents@1.0.1': - resolution: {integrity: sha512-aweoMH15wNJ8g7b2r4C4WRuJxZ0ca8HtNO54rkye/3duxTkW4fGBEutCx03jCIr5+a1l+4vFJNP859QnAVBVCA==} - engines: {node: '>=16.0.0'} + "@graphql-tools/documents@1.0.1": + resolution: + { + integrity: sha512-aweoMH15wNJ8g7b2r4C4WRuJxZ0ca8HtNO54rkye/3duxTkW4fGBEutCx03jCIr5+a1l+4vFJNP859QnAVBVCA==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor-common@0.0.1': - resolution: {integrity: sha512-Gan7uiQhKvAAl0UM20Oy/n5NGBBDNm+ASHvnYuD8mP+dAH0qY+2QMCHyi5py28WAlhAwr0+CAemEyzY/ZzOjdQ==} - engines: {node: '>=18.0.0'} + "@graphql-tools/executor-common@0.0.1": + resolution: + { + integrity: sha512-Gan7uiQhKvAAl0UM20Oy/n5NGBBDNm+ASHvnYuD8mP+dAH0qY+2QMCHyi5py28WAlhAwr0+CAemEyzY/ZzOjdQ==, + } + engines: { node: ">=18.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor-graphql-ws@1.3.7': - resolution: {integrity: sha512-9KUrlpil5nBgcb+XRUIxNQGI+c237LAfDBqYCdLGuYT+/oZz1b4rRIe6HuRk09vuxrbaMTzm7xHhn/iuwWW4eg==} - engines: {node: '>=18.0.0'} + "@graphql-tools/executor-graphql-ws@1.3.7": + resolution: + { + integrity: sha512-9KUrlpil5nBgcb+XRUIxNQGI+c237LAfDBqYCdLGuYT+/oZz1b4rRIe6HuRk09vuxrbaMTzm7xHhn/iuwWW4eg==, + } + engines: { node: ">=18.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor-http@1.2.4': - resolution: {integrity: sha512-2WwymmIplDdzdPgs/qcqfqYfGGfpd626VejsREylTtyrBcURtyNfGw95sHOPo1O2NEXC5wJRN2o+GQBfC3Zy0g==} - engines: {node: '>=18.0.0'} + "@graphql-tools/executor-http@1.2.4": + resolution: + { + integrity: sha512-2WwymmIplDdzdPgs/qcqfqYfGGfpd626VejsREylTtyrBcURtyNfGw95sHOPo1O2NEXC5wJRN2o+GQBfC3Zy0g==, + } + engines: { node: ">=18.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor-legacy-ws@1.1.10': - resolution: {integrity: sha512-ENyCAky0PrcP0dR5ZNIsCTww3CdOECBor/VuRtxAA+BffFhofNiOKcgR6MEsAOH2jHh0K2wwK38sgrW+D3GX3w==} - engines: {node: '>=16.0.0'} + "@graphql-tools/executor-legacy-ws@1.1.10": + resolution: + { + integrity: sha512-ENyCAky0PrcP0dR5ZNIsCTww3CdOECBor/VuRtxAA+BffFhofNiOKcgR6MEsAOH2jHh0K2wwK38sgrW+D3GX3w==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor@1.3.12': - resolution: {integrity: sha512-FzLXZQJOZHB75SecYFOIEEHw/qcxkRFViw0lVqHpaL07c+GqDxv6VOto0FZCIiV9RgGdyRj3O8lXDCp9Cw1MbA==} - engines: {node: '>=16.0.0'} + "@graphql-tools/executor@1.3.12": + resolution: + { + integrity: sha512-FzLXZQJOZHB75SecYFOIEEHw/qcxkRFViw0lVqHpaL07c+GqDxv6VOto0FZCIiV9RgGdyRj3O8lXDCp9Cw1MbA==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/git-loader@8.0.17': - resolution: {integrity: sha512-UYrZmO0LRQecWQx4jpZdUYBLrP0uBGiQks2RGLDpAokqo60rneBxlivjJS3HfMaohhiYy27nU00Ahy/9iTn79Q==} - engines: {node: '>=16.0.0'} + "@graphql-tools/git-loader@8.0.17": + resolution: + { + integrity: sha512-UYrZmO0LRQecWQx4jpZdUYBLrP0uBGiQks2RGLDpAokqo60rneBxlivjJS3HfMaohhiYy27nU00Ahy/9iTn79Q==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/github-loader@8.0.12': - resolution: {integrity: sha512-KKcDqqNBdNoGf4KL7q+20dbFxBkTl63uYxI9vlaKVHvnLd/JmuopQ4lkHCBj9UWP/AVyT6mlPlWwXSBg0lci0A==} - engines: {node: '>=16.0.0'} + "@graphql-tools/github-loader@8.0.12": + resolution: + { + integrity: sha512-KKcDqqNBdNoGf4KL7q+20dbFxBkTl63uYxI9vlaKVHvnLd/JmuopQ4lkHCBj9UWP/AVyT6mlPlWwXSBg0lci0A==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/graphql-file-loader@8.0.11': - resolution: {integrity: sha512-Rn7241tY1JFsWzLIn2pji/JWNVHnL/1+CRjdd9M7DgI8Tj5GYsD60yDQ/gmaTzBvy4mQXeyW5y3+rf8Px0pGeQ==} - engines: {node: '>=16.0.0'} + "@graphql-tools/graphql-file-loader@8.0.11": + resolution: + { + integrity: sha512-Rn7241tY1JFsWzLIn2pji/JWNVHnL/1+CRjdd9M7DgI8Tj5GYsD60yDQ/gmaTzBvy4mQXeyW5y3+rf8Px0pGeQ==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/graphql-tag-pluck@8.3.12': - resolution: {integrity: sha512-C6Ddg5RTz1WM96LYBtMuSEwN4QHfivK/vtbiAq9Soo6SoW1vGE4gzt0QS2FDVnDeB16er3h8YQZJ0xwm4pLnfA==} - engines: {node: '>=16.0.0'} + "@graphql-tools/graphql-tag-pluck@8.3.12": + resolution: + { + integrity: sha512-C6Ddg5RTz1WM96LYBtMuSEwN4QHfivK/vtbiAq9Soo6SoW1vGE4gzt0QS2FDVnDeB16er3h8YQZJ0xwm4pLnfA==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/import@7.0.11': - resolution: {integrity: sha512-zUru+YhjLUpdyNnTKHXLBjV6bh+CpxVhxJr5mgsFT/Lk6fdpjkEyk+hzdgINuo5GbIulFa6KpLZUBoZsDARBpQ==} - engines: {node: '>=16.0.0'} + "@graphql-tools/import@7.0.11": + resolution: + { + integrity: sha512-zUru+YhjLUpdyNnTKHXLBjV6bh+CpxVhxJr5mgsFT/Lk6fdpjkEyk+hzdgINuo5GbIulFa6KpLZUBoZsDARBpQ==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/json-file-loader@8.0.11': - resolution: {integrity: sha512-xsfIbPyxyXWnu+GSC5HCw945Gt++b+5NeEvpunw2cK9myGhF2Bkb8N4QTNwWy+7kvOAKzNopBGqGV+x3uaQAZA==} - engines: {node: '>=16.0.0'} + "@graphql-tools/json-file-loader@8.0.11": + resolution: + { + integrity: sha512-xsfIbPyxyXWnu+GSC5HCw945Gt++b+5NeEvpunw2cK9myGhF2Bkb8N4QTNwWy+7kvOAKzNopBGqGV+x3uaQAZA==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/load@8.0.12': - resolution: {integrity: sha512-ZFqerNO7at64N4GHT76k0AkwToHNHVkpAh1iFDRHvvFpESpZ3LDz9Y6cs54Sf6zhATecDuUSwbWZoEE2WIDExA==} - engines: {node: '>=16.0.0'} + "@graphql-tools/load@8.0.12": + resolution: + { + integrity: sha512-ZFqerNO7at64N4GHT76k0AkwToHNHVkpAh1iFDRHvvFpESpZ3LDz9Y6cs54Sf6zhATecDuUSwbWZoEE2WIDExA==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/merge@9.0.17': - resolution: {integrity: sha512-3K4g8KKbIqfdmK0L5+VtZsqwAeElPkvT5ejiH+KEhn2wyKNCi4HYHxpQk8xbu+dSwLlm9Lhet1hylpo/mWCkuQ==} - engines: {node: '>=16.0.0'} + "@graphql-tools/merge@9.0.17": + resolution: + { + integrity: sha512-3K4g8KKbIqfdmK0L5+VtZsqwAeElPkvT5ejiH+KEhn2wyKNCi4HYHxpQk8xbu+dSwLlm9Lhet1hylpo/mWCkuQ==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/optimize@1.4.0': - resolution: {integrity: sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==} + "@graphql-tools/optimize@1.4.0": + resolution: + { + integrity: sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/optimize@2.0.0': - resolution: {integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==} - engines: {node: '>=16.0.0'} + "@graphql-tools/optimize@2.0.0": + resolution: + { + integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/prisma-loader@8.0.17': - resolution: {integrity: sha512-fnuTLeQhqRbA156pAyzJYN0KxCjKYRU5bz1q/SKOwElSnAU4k7/G1kyVsWLh7fneY78LoMNH5n+KlFV8iQlnyg==} - engines: {node: '>=16.0.0'} + "@graphql-tools/prisma-loader@8.0.17": + resolution: + { + integrity: sha512-fnuTLeQhqRbA156pAyzJYN0KxCjKYRU5bz1q/SKOwElSnAU4k7/G1kyVsWLh7fneY78LoMNH5n+KlFV8iQlnyg==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/relay-operation-optimizer@6.5.18': - resolution: {integrity: sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==} + "@graphql-tools/relay-operation-optimizer@6.5.18": + resolution: + { + integrity: sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/relay-operation-optimizer@7.0.11': - resolution: {integrity: sha512-98w541PwpVP/fmdE1RMH7CVQxTu8VojFaMHuFAw9hhM9r5aqmS0YXMHTTxnZVJRTTweBAjT+cWsig63wbhnnOQ==} - engines: {node: '>=16.0.0'} + "@graphql-tools/relay-operation-optimizer@7.0.11": + resolution: + { + integrity: sha512-98w541PwpVP/fmdE1RMH7CVQxTu8VojFaMHuFAw9hhM9r5aqmS0YXMHTTxnZVJRTTweBAjT+cWsig63wbhnnOQ==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/schema@10.0.16': - resolution: {integrity: sha512-G2zgb8hNg9Sx6Z2FSXm57ToNcwMls9A9cUm+EsCrnGGDsryzN5cONYePUpSGj5NCFivVp3o1FT5dg19P/1qeqQ==} - engines: {node: '>=16.0.0'} + "@graphql-tools/schema@10.0.16": + resolution: + { + integrity: sha512-G2zgb8hNg9Sx6Z2FSXm57ToNcwMls9A9cUm+EsCrnGGDsryzN5cONYePUpSGj5NCFivVp3o1FT5dg19P/1qeqQ==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/url-loader@8.0.23': - resolution: {integrity: sha512-WSrsUkuXXInET7i+da/qEOYfEGVtsG58Kgl/1XpEatFSL5qL5NWbuS0Xadi+p1gF6sy+VhPfvncLqhRjGWyvyQ==} - engines: {node: '>=16.0.0'} + "@graphql-tools/url-loader@8.0.23": + resolution: + { + integrity: sha512-WSrsUkuXXInET7i+da/qEOYfEGVtsG58Kgl/1XpEatFSL5qL5NWbuS0Xadi+p1gF6sy+VhPfvncLqhRjGWyvyQ==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@10.7.2': - resolution: {integrity: sha512-Wn85S+hfkzfVFpXVrQ0hjnePa3p28aB6IdAGCiD1SqBCSMDRzL+OFEtyAyb30nV9Mqflqs9lCqjqlR2puG857Q==} - engines: {node: '>=16.0.0'} + "@graphql-tools/utils@10.7.2": + resolution: + { + integrity: sha512-Wn85S+hfkzfVFpXVrQ0hjnePa3p28aB6IdAGCiD1SqBCSMDRzL+OFEtyAyb30nV9Mqflqs9lCqjqlR2puG857Q==, + } + engines: { node: ">=16.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@8.13.1': - resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} + "@graphql-tools/utils@8.13.1": + resolution: + { + integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@9.2.1': - resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==} + "@graphql-tools/utils@9.2.1": + resolution: + { + integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==, + } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/wrap@10.0.27': - resolution: {integrity: sha512-UikYBknzYgJKhzIXrzA58EO8IZ+jlX/iPmfUactK6aypc7iKCJzGD31Ha8rDI9GiHPn1F8PUAB4cTlGJ1qRh3w==} - engines: {node: '>=18.0.0'} + "@graphql-tools/wrap@10.0.27": + resolution: + { + integrity: sha512-UikYBknzYgJKhzIXrzA58EO8IZ+jlX/iPmfUactK6aypc7iKCJzGD31Ha8rDI9GiHPn1F8PUAB4cTlGJ1qRh3w==, + } + engines: { node: ">=18.0.0" } peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-typed-document-node/core@3.2.0': - resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} + "@graphql-typed-document-node/core@3.2.0": + resolution: + { + integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==, + } peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@headlessui/react@2.2.0': - resolution: {integrity: sha512-RzCEg+LXsuI7mHiSomsu/gBJSjpupm6A1qIZ5sWjd7JhARNlMiSA4kKfJpCKwU9tE+zMRterhhrP74PvfJrpXQ==} - engines: {node: '>=10'} + "@headlessui/react@2.2.0": + resolution: + { + integrity: sha512-RzCEg+LXsuI7mHiSomsu/gBJSjpupm6A1qIZ5sWjd7JhARNlMiSA4kKfJpCKwU9tE+zMRterhhrP74PvfJrpXQ==, + } + engines: { node: ">=10" } peerDependencies: react: ^18 || ^19 || ^19.0.0-rc react-dom: ^18 || ^19 || ^19.0.0-rc - '@hono/node-server@1.13.7': - resolution: {integrity: sha512-kTfUMsoloVKtRA2fLiGSd9qBddmru9KadNyhJCwgKBxTiNkaAJEwkVN9KV/rS4HtmmNRtUh6P+YpmjRMl0d9vQ==} - engines: {node: '>=18.14.1'} + "@hono/node-server@1.13.7": + resolution: + { + integrity: sha512-kTfUMsoloVKtRA2fLiGSd9qBddmru9KadNyhJCwgKBxTiNkaAJEwkVN9KV/rS4HtmmNRtUh6P+YpmjRMl0d9vQ==, + } + engines: { node: ">=18.14.1" } peerDependencies: hono: ^4 - '@humanfs/core@0.19.1': - resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} - engines: {node: '>=18.18.0'} - - '@humanfs/node@0.16.6': - resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} - engines: {node: '>=18.18.0'} - - '@humanwhocodes/module-importer@1.0.1': - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - - '@humanwhocodes/retry@0.3.1': - resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} - engines: {node: '>=18.18'} - - '@humanwhocodes/retry@0.4.1': - resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} - engines: {node: '>=18.18'} - - '@isaacs/cliui@8.0.2': - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} - - '@isaacs/fs-minipass@4.0.1': - resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} - engines: {node: '>=18.0.0'} - - '@istanbuljs/schema@0.1.3': - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} - - '@jest/schemas@29.6.3': - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@joshwooding/vite-plugin-react-docgen-typescript@0.4.2': - resolution: {integrity: sha512-feQ+ntr+8hbVudnsTUapiMN9q8T90XA1d5jn9QzY09sNoj4iD9wi0PY1vsBFTda4ZjEaxRK9S81oarR2nj7TFQ==} - peerDependencies: - typescript: '>= 4.3.x' + "@humanfs/core@0.19.1": + resolution: + { + integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==, + } + engines: { node: ">=18.18.0" } + + "@humanfs/node@0.16.6": + resolution: + { + integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==, + } + engines: { node: ">=18.18.0" } + + "@humanwhocodes/module-importer@1.0.1": + resolution: + { + integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, + } + engines: { node: ">=12.22" } + + "@humanwhocodes/retry@0.3.1": + resolution: + { + integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==, + } + engines: { node: ">=18.18" } + + "@humanwhocodes/retry@0.4.1": + resolution: + { + integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==, + } + engines: { node: ">=18.18" } + + "@isaacs/cliui@8.0.2": + resolution: + { + integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, + } + engines: { node: ">=12" } + + "@isaacs/fs-minipass@4.0.1": + resolution: + { + integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==, + } + engines: { node: ">=18.0.0" } + + "@istanbuljs/schema@0.1.3": + resolution: + { + integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, + } + engines: { node: ">=8" } + + "@jest/schemas@29.6.3": + resolution: + { + integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@joshwooding/vite-plugin-react-docgen-typescript@0.4.2": + resolution: + { + integrity: sha512-feQ+ntr+8hbVudnsTUapiMN9q8T90XA1d5jn9QzY09sNoj4iD9wi0PY1vsBFTda4ZjEaxRK9S81oarR2nj7TFQ==, + } + peerDependencies: + typescript: ">= 4.3.x" vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 peerDependenciesMeta: typescript: optional: true - '@jridgewell/gen-mapping@0.3.8': - resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} - engines: {node: '>=6.0.0'} - - '@jridgewell/resolve-uri@3.1.2': - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} - engines: {node: '>=6.0.0'} - - '@jridgewell/set-array@1.2.1': - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} - - '@jridgewell/source-map@0.3.6': - resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} - - '@jridgewell/sourcemap-codec@1.5.0': - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - - '@jridgewell/trace-mapping@0.3.25': - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - - '@kamilkisiela/fast-url-parser@1.1.4': - resolution: {integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==} - - '@latticexyz/schema-type@2.0.12': - resolution: {integrity: sha512-QDnHU3iCQmY8e24CGR3hKUEprHrrNUfFTiUaSuj3J0d/x9iaIafYT2+dWydxgcpCmK4Xl7PgurvJiAVCmcLokg==} - - '@latticexyz/utils@2.0.12': - resolution: {integrity: sha512-AwniovUlWY7YL92Mjz/3R0V9g8c5wYg5t3agRmMZ9wgktUB6BYZC65n+sKp88wUuN3DrMLb51UFZOycGh0JD2w==} - - '@latticexyz/utils@2.2.14': - resolution: {integrity: sha512-JzBBKZRtLXtwl/f6ThtlrSOUQYVNAOYXakYdqOaohAAVaGmALfeSTufP1pQfq3IaT2StOt6mA6/HdUUHOQol3g==} - - '@manypkg/find-root@2.2.3': - resolution: {integrity: sha512-jtEZKczWTueJYHjGpxU3KJQ08Gsrf4r6Q2GjmPp/RGk5leeYAA1eyDADSAF+KVCsQ6EwZd/FMcOFCoMhtqdCtQ==} - engines: {node: '>=14.18.0'} - - '@manypkg/tools@1.1.2': - resolution: {integrity: sha512-3lBouSuF7CqlseLB+FKES0K4FQ02JrbEoRtJhxnsyB1s5v4AP03gsoohN8jp7DcOImhaR9scYdztq3/sLfk/qQ==} - engines: {node: '>=14.18.0'} - - '@mapbox/node-pre-gyp@2.0.0-rc.0': - resolution: {integrity: sha512-nhSMNprz3WmeRvd8iUs5JqkKr0Ncx46JtPxM3AhXes84XpSJfmIwKeWXRpsr53S7kqPkQfPhzrMFUxSNb23qSA==} - engines: {node: '>=18'} + "@jridgewell/gen-mapping@0.3.8": + resolution: + { + integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==, + } + engines: { node: ">=6.0.0" } + + "@jridgewell/resolve-uri@3.1.2": + resolution: + { + integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, + } + engines: { node: ">=6.0.0" } + + "@jridgewell/set-array@1.2.1": + resolution: + { + integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==, + } + engines: { node: ">=6.0.0" } + + "@jridgewell/source-map@0.3.6": + resolution: + { + integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==, + } + + "@jridgewell/sourcemap-codec@1.5.0": + resolution: + { + integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==, + } + + "@jridgewell/trace-mapping@0.3.25": + resolution: + { + integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, + } + + "@kamilkisiela/fast-url-parser@1.1.4": + resolution: + { + integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==, + } + + "@latticexyz/schema-type@2.0.12": + resolution: + { + integrity: sha512-QDnHU3iCQmY8e24CGR3hKUEprHrrNUfFTiUaSuj3J0d/x9iaIafYT2+dWydxgcpCmK4Xl7PgurvJiAVCmcLokg==, + } + + "@latticexyz/utils@2.0.12": + resolution: + { + integrity: sha512-AwniovUlWY7YL92Mjz/3R0V9g8c5wYg5t3agRmMZ9wgktUB6BYZC65n+sKp88wUuN3DrMLb51UFZOycGh0JD2w==, + } + + "@latticexyz/utils@2.2.14": + resolution: + { + integrity: sha512-JzBBKZRtLXtwl/f6ThtlrSOUQYVNAOYXakYdqOaohAAVaGmALfeSTufP1pQfq3IaT2StOt6mA6/HdUUHOQol3g==, + } + + "@manypkg/find-root@2.2.3": + resolution: + { + integrity: sha512-jtEZKczWTueJYHjGpxU3KJQ08Gsrf4r6Q2GjmPp/RGk5leeYAA1eyDADSAF+KVCsQ6EwZd/FMcOFCoMhtqdCtQ==, + } + engines: { node: ">=14.18.0" } + + "@manypkg/tools@1.1.2": + resolution: + { + integrity: sha512-3lBouSuF7CqlseLB+FKES0K4FQ02JrbEoRtJhxnsyB1s5v4AP03gsoohN8jp7DcOImhaR9scYdztq3/sLfk/qQ==, + } + engines: { node: ">=14.18.0" } + + "@mapbox/node-pre-gyp@2.0.0-rc.0": + resolution: + { + integrity: sha512-nhSMNprz3WmeRvd8iUs5JqkKr0Ncx46JtPxM3AhXes84XpSJfmIwKeWXRpsr53S7kqPkQfPhzrMFUxSNb23qSA==, + } + engines: { node: ">=18" } hasBin: true - '@mdx-js/mdx@3.1.0': - resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==} - - '@mdx-js/react@3.1.0': - resolution: {integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==} - peerDependencies: - '@types/react': '>=16' - react: '>=16' - - '@mdx-js/rollup@3.1.0': - resolution: {integrity: sha512-q4xOtUXpCzeouE8GaJ8StT4rDxm/U5j6lkMHL2srb2Q3Y7cobE0aXyPzXVVlbeIMBi+5R5MpbiaVE5/vJUdnHg==} - peerDependencies: - rollup: '>=2' - - '@module-federation/runtime@0.1.21': - resolution: {integrity: sha512-/p4BhZ0SnjJuiL0wwu+FebFgIUJ9vM+oCY7CyprUHImyi/Y23ulI61WNWMVrKQGgdMoXQDQCL8RH4EnrVP2ZFw==} - - '@module-federation/sdk@0.1.21': - resolution: {integrity: sha512-r7xPiAm+O4e+8Zvw+8b4ToeD0D0VJD004nHmt+Y8r/l98J2eA6di72Vn1FeyjtQbCrFtiMw3ts/dlqtcmIBipw==} - - '@noble/curves@1.0.0': - resolution: {integrity: sha512-2upgEu0iLiDVDZkNLeFV2+ht0BAVgQnEmCk6JsOch9Rp8xfkMCbvbAZlA2pBHQc73dbl+vFOXfqkf4uemdn0bw==} - - '@noble/curves@1.2.0': - resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==} - - '@noble/curves@1.3.0': - resolution: {integrity: sha512-t01iSXPuN+Eqzb4eBX0S5oubSqXbK/xXa1Ne18Hj8f9pStxztHCE2gfboSp/dZRLSqfuLpRK2nDXDK+W9puocA==} - - '@noble/curves@1.4.2': - resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} - - '@noble/curves@1.7.0': - resolution: {integrity: sha512-UTMhXK9SeDhFJVrHeUJ5uZlI6ajXg10O6Ddocf9S6GjbSBVZsJo88HzKwXznNfGpMTRDyJkqMjNDPYgf0qFWnw==} - engines: {node: ^14.21.3 || >=16} - - '@noble/curves@1.8.0': - resolution: {integrity: sha512-j84kjAbzEnQHaSIhRPUmB3/eVXu2k3dKPl2LOrR8fSOIL+89U+7lV117EWHtq/GHM3ReGHM46iRBdZfpc4HRUQ==} - engines: {node: ^14.21.3 || >=16} - - '@noble/hashes@1.3.0': - resolution: {integrity: sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg==} - - '@noble/hashes@1.3.2': - resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==} - engines: {node: '>= 16'} - - '@noble/hashes@1.3.3': - resolution: {integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==} - engines: {node: '>= 16'} - - '@noble/hashes@1.4.0': - resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} - engines: {node: '>= 16'} - - '@noble/hashes@1.6.0': - resolution: {integrity: sha512-YUULf0Uk4/mAA89w+k3+yUYh6NrEvxZa5T6SY3wlMvE2chHkxFUUIDI8/XW1QSC357iA5pSnqt7XEhvFOqmDyQ==} - engines: {node: ^14.21.3 || >=16} - - '@noble/hashes@1.6.1': - resolution: {integrity: sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w==} - engines: {node: ^14.21.3 || >=16} - - '@noble/hashes@1.7.0': - resolution: {integrity: sha512-HXydb0DgzTpDPwbVeDGCG1gIu7X6+AuU6Zl6av/E/KG8LMsvPntvq+w17CHRpKBmN6Ybdrt1eP3k4cj8DJa78w==} - engines: {node: ^14.21.3 || >=16} - - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - - '@octokit/auth-token@4.0.0': - resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} - engines: {node: '>= 18'} - - '@octokit/core@5.2.0': - resolution: {integrity: sha512-1LFfa/qnMQvEOAdzlQymH0ulepxbxnCYAKJZfMci/5XJyIHWgEYnDmgnKakbTh7CH2tFQ5O60oYDvns4i9RAIg==} - engines: {node: '>= 18'} - - '@octokit/endpoint@9.0.5': - resolution: {integrity: sha512-ekqR4/+PCLkEBF6qgj8WqJfvDq65RH85OAgrtnVp1mSxaXF03u2xW/hUdweGS5654IlC0wkNYC18Z50tSYTAFw==} - engines: {node: '>= 18'} - - '@octokit/graphql@7.1.0': - resolution: {integrity: sha512-r+oZUH7aMFui1ypZnAvZmn0KSqAUgE1/tUXIWaqUCa1758ts/Jio84GZuzsvUkme98kv0WFY8//n0J1Z+vsIsQ==} - engines: {node: '>= 18'} - - '@octokit/openapi-types@22.2.0': - resolution: {integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==} - - '@octokit/plugin-paginate-rest@11.3.1': - resolution: {integrity: sha512-ryqobs26cLtM1kQxqeZui4v8FeznirUsksiA+RYemMPJ7Micju0WSkv50dBksTuZks9O5cg4wp+t8fZ/cLY56g==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': '5' - - '@octokit/plugin-request-log@4.0.1': - resolution: {integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': '5' - - '@octokit/plugin-rest-endpoint-methods@13.2.2': - resolution: {integrity: sha512-EI7kXWidkt3Xlok5uN43suK99VWqc8OaIMktY9d9+RNKl69juoTyxmLoWPIZgJYzi41qj/9zU7G/ljnNOJ5AFA==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': ^5 - - '@octokit/request-error@5.1.0': - resolution: {integrity: sha512-GETXfE05J0+7H2STzekpKObFe765O5dlAKUTLNGeH+x47z7JjXHfsHKo5z21D/o/IOZTUEI6nyWyR+bZVP/n5Q==} - engines: {node: '>= 18'} - - '@octokit/request@8.4.0': - resolution: {integrity: sha512-9Bb014e+m2TgBeEJGEbdplMVWwPmL1FPtggHQRkV+WVsMggPtEkLKPlcVYm/o8xKLkpJ7B+6N8WfQMtDLX2Dpw==} - engines: {node: '>= 18'} - - '@octokit/rest@20.1.1': - resolution: {integrity: sha512-MB4AYDsM5jhIHro/dq4ix1iWTLGToIGk6cWF5L6vanFaMble5jTX/UBQyiv05HsWnwUtY8JrfHy2LWfKwihqMw==} - engines: {node: '>= 18'} - - '@octokit/types@13.6.2': - resolution: {integrity: sha512-WpbZfZUcZU77DrSW4wbsSgTPfKcp286q3ItaIgvSbBpZJlu6mnYXAkjZz6LVZPXkEvLIM8McanyZejKTYUHipA==} - - '@parcel/watcher-android-arm64@2.5.0': - resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==} - engines: {node: '>= 10.0.0'} + "@mdx-js/mdx@3.1.0": + resolution: + { + integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==, + } + + "@mdx-js/react@3.1.0": + resolution: + { + integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==, + } + peerDependencies: + "@types/react": ">=16" + react: ">=16" + + "@mdx-js/rollup@3.1.0": + resolution: + { + integrity: sha512-q4xOtUXpCzeouE8GaJ8StT4rDxm/U5j6lkMHL2srb2Q3Y7cobE0aXyPzXVVlbeIMBi+5R5MpbiaVE5/vJUdnHg==, + } + peerDependencies: + rollup: ">=2" + + "@module-federation/runtime@0.1.21": + resolution: + { + integrity: sha512-/p4BhZ0SnjJuiL0wwu+FebFgIUJ9vM+oCY7CyprUHImyi/Y23ulI61WNWMVrKQGgdMoXQDQCL8RH4EnrVP2ZFw==, + } + + "@module-federation/sdk@0.1.21": + resolution: + { + integrity: sha512-r7xPiAm+O4e+8Zvw+8b4ToeD0D0VJD004nHmt+Y8r/l98J2eA6di72Vn1FeyjtQbCrFtiMw3ts/dlqtcmIBipw==, + } + + "@noble/curves@1.0.0": + resolution: + { + integrity: sha512-2upgEu0iLiDVDZkNLeFV2+ht0BAVgQnEmCk6JsOch9Rp8xfkMCbvbAZlA2pBHQc73dbl+vFOXfqkf4uemdn0bw==, + } + + "@noble/curves@1.2.0": + resolution: + { + integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==, + } + + "@noble/curves@1.3.0": + resolution: + { + integrity: sha512-t01iSXPuN+Eqzb4eBX0S5oubSqXbK/xXa1Ne18Hj8f9pStxztHCE2gfboSp/dZRLSqfuLpRK2nDXDK+W9puocA==, + } + + "@noble/curves@1.4.2": + resolution: + { + integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==, + } + + "@noble/curves@1.7.0": + resolution: + { + integrity: sha512-UTMhXK9SeDhFJVrHeUJ5uZlI6ajXg10O6Ddocf9S6GjbSBVZsJo88HzKwXznNfGpMTRDyJkqMjNDPYgf0qFWnw==, + } + engines: { node: ^14.21.3 || >=16 } + + "@noble/curves@1.8.0": + resolution: + { + integrity: sha512-j84kjAbzEnQHaSIhRPUmB3/eVXu2k3dKPl2LOrR8fSOIL+89U+7lV117EWHtq/GHM3ReGHM46iRBdZfpc4HRUQ==, + } + engines: { node: ^14.21.3 || >=16 } + + "@noble/hashes@1.3.0": + resolution: + { + integrity: sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg==, + } + + "@noble/hashes@1.3.2": + resolution: + { + integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==, + } + engines: { node: ">= 16" } + + "@noble/hashes@1.3.3": + resolution: + { + integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==, + } + engines: { node: ">= 16" } + + "@noble/hashes@1.4.0": + resolution: + { + integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==, + } + engines: { node: ">= 16" } + + "@noble/hashes@1.6.0": + resolution: + { + integrity: sha512-YUULf0Uk4/mAA89w+k3+yUYh6NrEvxZa5T6SY3wlMvE2chHkxFUUIDI8/XW1QSC357iA5pSnqt7XEhvFOqmDyQ==, + } + engines: { node: ^14.21.3 || >=16 } + + "@noble/hashes@1.6.1": + resolution: + { + integrity: sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w==, + } + engines: { node: ^14.21.3 || >=16 } + + "@noble/hashes@1.7.0": + resolution: + { + integrity: sha512-HXydb0DgzTpDPwbVeDGCG1gIu7X6+AuU6Zl6av/E/KG8LMsvPntvq+w17CHRpKBmN6Ybdrt1eP3k4cj8DJa78w==, + } + engines: { node: ^14.21.3 || >=16 } + + "@nodelib/fs.scandir@2.1.5": + resolution: + { + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, + } + engines: { node: ">= 8" } + + "@nodelib/fs.stat@2.0.5": + resolution: + { + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, + } + engines: { node: ">= 8" } + + "@nodelib/fs.walk@1.2.8": + resolution: + { + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, + } + engines: { node: ">= 8" } + + "@octokit/auth-token@4.0.0": + resolution: + { + integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==, + } + engines: { node: ">= 18" } + + "@octokit/core@5.2.0": + resolution: + { + integrity: sha512-1LFfa/qnMQvEOAdzlQymH0ulepxbxnCYAKJZfMci/5XJyIHWgEYnDmgnKakbTh7CH2tFQ5O60oYDvns4i9RAIg==, + } + engines: { node: ">= 18" } + + "@octokit/endpoint@9.0.5": + resolution: + { + integrity: sha512-ekqR4/+PCLkEBF6qgj8WqJfvDq65RH85OAgrtnVp1mSxaXF03u2xW/hUdweGS5654IlC0wkNYC18Z50tSYTAFw==, + } + engines: { node: ">= 18" } + + "@octokit/graphql@7.1.0": + resolution: + { + integrity: sha512-r+oZUH7aMFui1ypZnAvZmn0KSqAUgE1/tUXIWaqUCa1758ts/Jio84GZuzsvUkme98kv0WFY8//n0J1Z+vsIsQ==, + } + engines: { node: ">= 18" } + + "@octokit/openapi-types@22.2.0": + resolution: + { + integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==, + } + + "@octokit/plugin-paginate-rest@11.3.1": + resolution: + { + integrity: sha512-ryqobs26cLtM1kQxqeZui4v8FeznirUsksiA+RYemMPJ7Micju0WSkv50dBksTuZks9O5cg4wp+t8fZ/cLY56g==, + } + engines: { node: ">= 18" } + peerDependencies: + "@octokit/core": "5" + + "@octokit/plugin-request-log@4.0.1": + resolution: + { + integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==, + } + engines: { node: ">= 18" } + peerDependencies: + "@octokit/core": "5" + + "@octokit/plugin-rest-endpoint-methods@13.2.2": + resolution: + { + integrity: sha512-EI7kXWidkt3Xlok5uN43suK99VWqc8OaIMktY9d9+RNKl69juoTyxmLoWPIZgJYzi41qj/9zU7G/ljnNOJ5AFA==, + } + engines: { node: ">= 18" } + peerDependencies: + "@octokit/core": ^5 + + "@octokit/request-error@5.1.0": + resolution: + { + integrity: sha512-GETXfE05J0+7H2STzekpKObFe765O5dlAKUTLNGeH+x47z7JjXHfsHKo5z21D/o/IOZTUEI6nyWyR+bZVP/n5Q==, + } + engines: { node: ">= 18" } + + "@octokit/request@8.4.0": + resolution: + { + integrity: sha512-9Bb014e+m2TgBeEJGEbdplMVWwPmL1FPtggHQRkV+WVsMggPtEkLKPlcVYm/o8xKLkpJ7B+6N8WfQMtDLX2Dpw==, + } + engines: { node: ">= 18" } + + "@octokit/rest@20.1.1": + resolution: + { + integrity: sha512-MB4AYDsM5jhIHro/dq4ix1iWTLGToIGk6cWF5L6vanFaMble5jTX/UBQyiv05HsWnwUtY8JrfHy2LWfKwihqMw==, + } + engines: { node: ">= 18" } + + "@octokit/types@13.6.2": + resolution: + { + integrity: sha512-WpbZfZUcZU77DrSW4wbsSgTPfKcp286q3ItaIgvSbBpZJlu6mnYXAkjZz6LVZPXkEvLIM8McanyZejKTYUHipA==, + } + + "@parcel/watcher-android-arm64@2.5.0": + resolution: + { + integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==, + } + engines: { node: ">= 10.0.0" } cpu: [arm64] os: [android] - '@parcel/watcher-darwin-arm64@2.5.0': - resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-darwin-arm64@2.5.0": + resolution: + { + integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==, + } + engines: { node: ">= 10.0.0" } cpu: [arm64] os: [darwin] - '@parcel/watcher-darwin-x64@2.5.0': - resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-darwin-x64@2.5.0": + resolution: + { + integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==, + } + engines: { node: ">= 10.0.0" } cpu: [x64] os: [darwin] - '@parcel/watcher-freebsd-x64@2.5.0': - resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-freebsd-x64@2.5.0": + resolution: + { + integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==, + } + engines: { node: ">= 10.0.0" } cpu: [x64] os: [freebsd] - '@parcel/watcher-linux-arm-glibc@2.5.0': - resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-linux-arm-glibc@2.5.0": + resolution: + { + integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==, + } + engines: { node: ">= 10.0.0" } cpu: [arm] os: [linux] - '@parcel/watcher-linux-arm-musl@2.5.0': - resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-linux-arm-musl@2.5.0": + resolution: + { + integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==, + } + engines: { node: ">= 10.0.0" } cpu: [arm] os: [linux] - '@parcel/watcher-linux-arm64-glibc@2.5.0': - resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-linux-arm64-glibc@2.5.0": + resolution: + { + integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==, + } + engines: { node: ">= 10.0.0" } cpu: [arm64] os: [linux] - '@parcel/watcher-linux-arm64-musl@2.5.0': - resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-linux-arm64-musl@2.5.0": + resolution: + { + integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==, + } + engines: { node: ">= 10.0.0" } cpu: [arm64] os: [linux] - '@parcel/watcher-linux-x64-glibc@2.5.0': - resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-linux-x64-glibc@2.5.0": + resolution: + { + integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==, + } + engines: { node: ">= 10.0.0" } cpu: [x64] os: [linux] - '@parcel/watcher-linux-x64-musl@2.5.0': - resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-linux-x64-musl@2.5.0": + resolution: + { + integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==, + } + engines: { node: ">= 10.0.0" } cpu: [x64] os: [linux] - '@parcel/watcher-win32-arm64@2.5.0': - resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-win32-arm64@2.5.0": + resolution: + { + integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==, + } + engines: { node: ">= 10.0.0" } cpu: [arm64] os: [win32] - '@parcel/watcher-win32-ia32@2.5.0': - resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-win32-ia32@2.5.0": + resolution: + { + integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==, + } + engines: { node: ">= 10.0.0" } cpu: [ia32] os: [win32] - '@parcel/watcher-win32-x64@2.5.0': - resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==} - engines: {node: '>= 10.0.0'} + "@parcel/watcher-win32-x64@2.5.0": + resolution: + { + integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==, + } + engines: { node: ">= 10.0.0" } cpu: [x64] os: [win32] - '@parcel/watcher@2.5.0': - resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==} - engines: {node: '>= 10.0.0'} - - '@pkgjs/parseargs@0.11.0': - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - - '@polka/url@1.0.0-next.28': - resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==} - - '@radix-ui/colors@3.0.0': - resolution: {integrity: sha512-FUOsGBkHrYJwCSEtWRCIfQbZG7q1e6DgxCIOe1SUQzDe/7rXXeA47s8yCn6fuTNQAj1Zq4oTFi9Yjp3wzElcxg==} - - '@radix-ui/number@1.1.0': - resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==} - - '@radix-ui/primitive@1.0.1': - resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} - - '@radix-ui/primitive@1.1.1': - resolution: {integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==} - - '@radix-ui/react-accordion@1.2.2': - resolution: {integrity: sha512-b1oh54x4DMCdGsB4/7ahiSrViXxaBwRPotiZNnYXjLha9vfuURSAZErki6qjDoSIV0eXx5v57XnTGVtGwnfp2g==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@parcel/watcher@2.5.0": + resolution: + { + integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==, + } + engines: { node: ">= 10.0.0" } + + "@pkgjs/parseargs@0.11.0": + resolution: + { + integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, + } + engines: { node: ">=14" } + + "@polka/url@1.0.0-next.28": + resolution: + { + integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==, + } + + "@radix-ui/colors@3.0.0": + resolution: + { + integrity: sha512-FUOsGBkHrYJwCSEtWRCIfQbZG7q1e6DgxCIOe1SUQzDe/7rXXeA47s8yCn6fuTNQAj1Zq4oTFi9Yjp3wzElcxg==, + } + + "@radix-ui/number@1.1.0": + resolution: + { + integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==, + } + + "@radix-ui/primitive@1.0.1": + resolution: + { + integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==, + } + + "@radix-ui/primitive@1.1.1": + resolution: + { + integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==, + } + + "@radix-ui/react-accordion@1.2.2": + resolution: + { + integrity: sha512-b1oh54x4DMCdGsB4/7ahiSrViXxaBwRPotiZNnYXjLha9vfuURSAZErki6qjDoSIV0eXx5v57XnTGVtGwnfp2g==, + } + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-arrow@1.1.1': - resolution: {integrity: sha512-NaVpZfmv8SKeZbn4ijN2V3jlHA9ngBG16VnIIm22nUR0Yk8KUALyBxT3KYEUnNuch9sTE8UTsS3whzBgKOL30w==} + "@radix-ui/react-arrow@1.1.1": + resolution: + { + integrity: sha512-NaVpZfmv8SKeZbn4ijN2V3jlHA9ngBG16VnIIm22nUR0Yk8KUALyBxT3KYEUnNuch9sTE8UTsS3whzBgKOL30w==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-checkbox@1.1.3': - resolution: {integrity: sha512-HD7/ocp8f1B3e6OHygH0n7ZKjONkhciy1Nh0yuBgObqThc3oyx+vuMfFHKAknXRHHWVE9XvXStxJFyjUmB8PIw==} + "@radix-ui/react-checkbox@1.1.3": + resolution: + { + integrity: sha512-HD7/ocp8f1B3e6OHygH0n7ZKjONkhciy1Nh0yuBgObqThc3oyx+vuMfFHKAknXRHHWVE9XvXStxJFyjUmB8PIw==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-collapsible@1.1.2': - resolution: {integrity: sha512-PliMB63vxz7vggcyq0IxNYk8vGDrLXVWw4+W4B8YnwI1s18x7YZYqlG9PLX7XxAJUi0g2DxP4XKJMFHh/iVh9A==} + "@radix-ui/react-collapsible@1.1.2": + resolution: + { + integrity: sha512-PliMB63vxz7vggcyq0IxNYk8vGDrLXVWw4+W4B8YnwI1s18x7YZYqlG9PLX7XxAJUi0g2DxP4XKJMFHh/iVh9A==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-collection@1.1.1': - resolution: {integrity: sha512-LwT3pSho9Dljg+wY2KN2mrrh6y3qELfftINERIzBUO9e0N+t0oMTyn3k9iv+ZqgrwGkRnLpNJrsMv9BZlt2yuA==} + "@radix-ui/react-collection@1.1.1": + resolution: + { + integrity: sha512-LwT3pSho9Dljg+wY2KN2mrrh6y3qELfftINERIzBUO9e0N+t0oMTyn3k9iv+ZqgrwGkRnLpNJrsMv9BZlt2yuA==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-compose-refs@1.0.1': - resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} + "@radix-ui/react-compose-refs@1.0.1": + resolution: + { + integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-compose-refs@1.1.1': - resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==} + "@radix-ui/react-compose-refs@1.1.1": + resolution: + { + integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-context@1.0.1': - resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} + "@radix-ui/react-context@1.0.1": + resolution: + { + integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-context@1.1.1': - resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==} + "@radix-ui/react-context@1.1.1": + resolution: + { + integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-dialog@1.0.5': - resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==} + "@radix-ui/react-dialog@1.0.5": + resolution: + { + integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-dialog@1.1.4': - resolution: {integrity: sha512-Ur7EV1IwQGCyaAuyDRiOLA5JIUZxELJljF+MbM/2NC0BYwfuRrbpS30BiQBJrVruscgUkieKkqXYDOoByaxIoA==} + "@radix-ui/react-dialog@1.1.4": + resolution: + { + integrity: sha512-Ur7EV1IwQGCyaAuyDRiOLA5JIUZxELJljF+MbM/2NC0BYwfuRrbpS30BiQBJrVruscgUkieKkqXYDOoByaxIoA==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-direction@1.1.0': - resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==} + "@radix-ui/react-direction@1.1.0": + resolution: + { + integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-dismissable-layer@1.0.5': - resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} + "@radix-ui/react-dismissable-layer@1.0.5": + resolution: + { + integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-dismissable-layer@1.1.3': - resolution: {integrity: sha512-onrWn/72lQoEucDmJnr8uczSNTujT0vJnA/X5+3AkChVPowr8n1yvIKIabhWyMQeMvvmdpsvcyDqx3X1LEXCPg==} + "@radix-ui/react-dismissable-layer@1.1.3": + resolution: + { + integrity: sha512-onrWn/72lQoEucDmJnr8uczSNTujT0vJnA/X5+3AkChVPowr8n1yvIKIabhWyMQeMvvmdpsvcyDqx3X1LEXCPg==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-dropdown-menu@2.1.4': - resolution: {integrity: sha512-iXU1Ab5ecM+yEepGAWK8ZhMyKX4ubFdCNtol4sT9D0OVErG9PNElfx3TQhjw7n7BC5nFVz68/5//clWy+8TXzA==} + "@radix-ui/react-dropdown-menu@2.1.4": + resolution: + { + integrity: sha512-iXU1Ab5ecM+yEepGAWK8ZhMyKX4ubFdCNtol4sT9D0OVErG9PNElfx3TQhjw7n7BC5nFVz68/5//clWy+8TXzA==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-focus-guards@1.0.1': - resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} + "@radix-ui/react-focus-guards@1.0.1": + resolution: + { + integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-focus-guards@1.1.1': - resolution: {integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==} + "@radix-ui/react-focus-guards@1.1.1": + resolution: + { + integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-focus-scope@1.0.4': - resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==} + "@radix-ui/react-focus-scope@1.0.4": + resolution: + { + integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-focus-scope@1.1.1': - resolution: {integrity: sha512-01omzJAYRxXdG2/he/+xy+c8a8gCydoQ1yOxnWNcRhrrBW5W+RQJ22EK1SaO8tb3WoUsuEw7mJjBozPzihDFjA==} + "@radix-ui/react-focus-scope@1.1.1": + resolution: + { + integrity: sha512-01omzJAYRxXdG2/he/+xy+c8a8gCydoQ1yOxnWNcRhrrBW5W+RQJ22EK1SaO8tb3WoUsuEw7mJjBozPzihDFjA==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-icons@1.3.2': - resolution: {integrity: sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==} + "@radix-ui/react-icons@1.3.2": + resolution: + { + integrity: sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==, + } peerDependencies: react: ^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc - '@radix-ui/react-id@1.0.1': - resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} + "@radix-ui/react-id@1.0.1": + resolution: + { + integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-id@1.1.0': - resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==} + "@radix-ui/react-id@1.1.0": + resolution: + { + integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-label@2.1.1': - resolution: {integrity: sha512-UUw5E4e/2+4kFMH7+YxORXGWggtY6sM8WIwh5RZchhLuUg2H1hc98Py+pr8HMz6rdaYrK2t296ZEjYLOCO5uUw==} + "@radix-ui/react-label@2.1.1": + resolution: + { + integrity: sha512-UUw5E4e/2+4kFMH7+YxORXGWggtY6sM8WIwh5RZchhLuUg2H1hc98Py+pr8HMz6rdaYrK2t296ZEjYLOCO5uUw==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-menu@2.1.4': - resolution: {integrity: sha512-BnOgVoL6YYdHAG6DtXONaR29Eq4nvbi8rutrV/xlr3RQCMMb3yqP85Qiw/3NReozrSW+4dfLkK+rc1hb4wPU/A==} + "@radix-ui/react-menu@2.1.4": + resolution: + { + integrity: sha512-BnOgVoL6YYdHAG6DtXONaR29Eq4nvbi8rutrV/xlr3RQCMMb3yqP85Qiw/3NReozrSW+4dfLkK+rc1hb4wPU/A==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-navigation-menu@1.2.3': - resolution: {integrity: sha512-IQWAsQ7dsLIYDrn0WqPU+cdM7MONTv9nqrLVYoie3BPiabSfUVDe6Fr+oEt0Cofsr9ONDcDe9xhmJbL1Uq1yKg==} + "@radix-ui/react-navigation-menu@1.2.3": + resolution: + { + integrity: sha512-IQWAsQ7dsLIYDrn0WqPU+cdM7MONTv9nqrLVYoie3BPiabSfUVDe6Fr+oEt0Cofsr9ONDcDe9xhmJbL1Uq1yKg==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-popover@1.1.4': - resolution: {integrity: sha512-aUACAkXx8LaFymDma+HQVji7WhvEhpFJ7+qPz17Nf4lLZqtreGOFRiNQWQmhzp7kEWg9cOyyQJpdIMUMPc/CPw==} + "@radix-ui/react-popover@1.1.4": + resolution: + { + integrity: sha512-aUACAkXx8LaFymDma+HQVji7WhvEhpFJ7+qPz17Nf4lLZqtreGOFRiNQWQmhzp7kEWg9cOyyQJpdIMUMPc/CPw==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-popper@1.2.1': - resolution: {integrity: sha512-3kn5Me69L+jv82EKRuQCXdYyf1DqHwD2U/sxoNgBGCB7K9TRc3bQamQ+5EPM9EvyPdli0W41sROd+ZU1dTCztw==} + "@radix-ui/react-popper@1.2.1": + resolution: + { + integrity: sha512-3kn5Me69L+jv82EKRuQCXdYyf1DqHwD2U/sxoNgBGCB7K9TRc3bQamQ+5EPM9EvyPdli0W41sROd+ZU1dTCztw==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-portal@1.0.4': - resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==} + "@radix-ui/react-portal@1.0.4": + resolution: + { + integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-portal@1.1.3': - resolution: {integrity: sha512-NciRqhXnGojhT93RPyDaMPfLH3ZSl4jjIFbZQ1b/vxvZEdHsBZ49wP9w8L3HzUQwep01LcWtkUvm0OVB5JAHTw==} + "@radix-ui/react-portal@1.1.3": + resolution: + { + integrity: sha512-NciRqhXnGojhT93RPyDaMPfLH3ZSl4jjIFbZQ1b/vxvZEdHsBZ49wP9w8L3HzUQwep01LcWtkUvm0OVB5JAHTw==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-presence@1.0.1': - resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} + "@radix-ui/react-presence@1.0.1": + resolution: + { + integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-presence@1.1.2': - resolution: {integrity: sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==} + "@radix-ui/react-presence@1.1.2": + resolution: + { + integrity: sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-primitive@1.0.3': - resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} + "@radix-ui/react-primitive@1.0.3": + resolution: + { + integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-primitive@2.0.1': - resolution: {integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==} + "@radix-ui/react-primitive@2.0.1": + resolution: + { + integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-roving-focus@1.1.1': - resolution: {integrity: sha512-QE1RoxPGJ/Nm8Qmk0PxP8ojmoaS67i0s7hVssS7KuI2FQoc/uzVlZsqKfQvxPE6D8hICCPHJ4D88zNhT3OOmkw==} + "@radix-ui/react-roving-focus@1.1.1": + resolution: + { + integrity: sha512-QE1RoxPGJ/Nm8Qmk0PxP8ojmoaS67i0s7hVssS7KuI2FQoc/uzVlZsqKfQvxPE6D8hICCPHJ4D88zNhT3OOmkw==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-select@2.1.4': - resolution: {integrity: sha512-pOkb2u8KgO47j/h7AylCj7dJsm69BXcjkrvTqMptFqsE2i0p8lHkfgneXKjAgPzBMivnoMyt8o4KiV4wYzDdyQ==} + "@radix-ui/react-select@2.1.4": + resolution: + { + integrity: sha512-pOkb2u8KgO47j/h7AylCj7dJsm69BXcjkrvTqMptFqsE2i0p8lHkfgneXKjAgPzBMivnoMyt8o4KiV4wYzDdyQ==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-separator@1.1.1': - resolution: {integrity: sha512-RRiNRSrD8iUiXriq/Y5n4/3iE8HzqgLHsusUSg5jVpU2+3tqcUFPJXHDymwEypunc2sWxDUS3UC+rkZRlHedsw==} + "@radix-ui/react-separator@1.1.1": + resolution: + { + integrity: sha512-RRiNRSrD8iUiXriq/Y5n4/3iE8HzqgLHsusUSg5jVpU2+3tqcUFPJXHDymwEypunc2sWxDUS3UC+rkZRlHedsw==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-slot@1.0.2': - resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} + "@radix-ui/react-slot@1.0.2": + resolution: + { + integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-slot@1.1.1': - resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==} + "@radix-ui/react-slot@1.1.1": + resolution: + { + integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-switch@1.1.2': - resolution: {integrity: sha512-zGukiWHjEdBCRyXvKR6iXAQG6qXm2esuAD6kDOi9Cn+1X6ev3ASo4+CsYaD6Fov9r/AQFekqnD/7+V0Cs6/98g==} + "@radix-ui/react-switch@1.1.2": + resolution: + { + integrity: sha512-zGukiWHjEdBCRyXvKR6iXAQG6qXm2esuAD6kDOi9Cn+1X6ev3ASo4+CsYaD6Fov9r/AQFekqnD/7+V0Cs6/98g==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-tabs@1.1.2': - resolution: {integrity: sha512-9u/tQJMcC2aGq7KXpGivMm1mgq7oRJKXphDwdypPd/j21j/2znamPU8WkXgnhUaTrSFNIt8XhOyCAupg8/GbwQ==} + "@radix-ui/react-tabs@1.1.2": + resolution: + { + integrity: sha512-9u/tQJMcC2aGq7KXpGivMm1mgq7oRJKXphDwdypPd/j21j/2znamPU8WkXgnhUaTrSFNIt8XhOyCAupg8/GbwQ==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-tooltip@1.1.6': - resolution: {integrity: sha512-TLB5D8QLExS1uDn7+wH/bjEmRurNMTzNrtq7IjaS4kjion9NtzsTGkvR5+i7yc9q01Pi2KMM2cN3f8UG4IvvXA==} + "@radix-ui/react-tooltip@1.1.6": + resolution: + { + integrity: sha512-TLB5D8QLExS1uDn7+wH/bjEmRurNMTzNrtq7IjaS4kjion9NtzsTGkvR5+i7yc9q01Pi2KMM2cN3f8UG4IvvXA==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/react-use-callback-ref@1.0.1': - resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} + "@radix-ui/react-use-callback-ref@1.0.1": + resolution: + { + integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-callback-ref@1.1.0': - resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==} + "@radix-ui/react-use-callback-ref@1.1.0": + resolution: + { + integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-controllable-state@1.0.1': - resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} + "@radix-ui/react-use-controllable-state@1.0.1": + resolution: + { + integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-controllable-state@1.1.0': - resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==} + "@radix-ui/react-use-controllable-state@1.1.0": + resolution: + { + integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-escape-keydown@1.0.3': - resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} + "@radix-ui/react-use-escape-keydown@1.0.3": + resolution: + { + integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-escape-keydown@1.1.0': - resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==} + "@radix-ui/react-use-escape-keydown@1.1.0": + resolution: + { + integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-layout-effect@1.0.1': - resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} + "@radix-ui/react-use-layout-effect@1.0.1": + resolution: + { + integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-layout-effect@1.1.0': - resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==} + "@radix-ui/react-use-layout-effect@1.1.0": + resolution: + { + integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-previous@1.1.0': - resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==} + "@radix-ui/react-use-previous@1.1.0": + resolution: + { + integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-rect@1.1.0': - resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==} + "@radix-ui/react-use-rect@1.1.0": + resolution: + { + integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-size@1.1.0': - resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==} + "@radix-ui/react-use-size@1.1.0": + resolution: + { + integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-visually-hidden@1.1.1': - resolution: {integrity: sha512-vVfA2IZ9q/J+gEamvj761Oq1FpWgCDaNOOIfbPVp2MVPLEomUr5+Vf7kJGwQ24YxZSlQVar7Bes8kyTo5Dshpg==} + "@radix-ui/react-visually-hidden@1.1.1": + resolution: + { + integrity: sha512-vVfA2IZ9q/J+gEamvj761Oq1FpWgCDaNOOIfbPVp2MVPLEomUr5+Vf7kJGwQ24YxZSlQVar7Bes8kyTo5Dshpg==, + } peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@types/react": "*" + "@types/react-dom": "*" react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom': + "@types/react-dom": optional: true - '@radix-ui/rect@1.1.0': - resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==} + "@radix-ui/rect@1.1.0": + resolution: + { + integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==, + } - '@react-aria/focus@3.19.0': - resolution: {integrity: sha512-hPF9EXoUQeQl1Y21/rbV2H4FdUR2v+4/I0/vB+8U3bT1CJ+1AFj1hc/rqx2DqEwDlEwOHN+E4+mRahQmlybq0A==} + "@react-aria/focus@3.19.0": + resolution: + { + integrity: sha512-hPF9EXoUQeQl1Y21/rbV2H4FdUR2v+4/I0/vB+8U3bT1CJ+1AFj1hc/rqx2DqEwDlEwOHN+E4+mRahQmlybq0A==, + } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-aria/interactions@3.22.5': - resolution: {integrity: sha512-kMwiAD9E0TQp+XNnOs13yVJghiy8ET8L0cbkeuTgNI96sOAp/63EJ1FSrDf17iD8sdjt41LafwX/dKXW9nCcLQ==} + "@react-aria/interactions@3.22.5": + resolution: + { + integrity: sha512-kMwiAD9E0TQp+XNnOs13yVJghiy8ET8L0cbkeuTgNI96sOAp/63EJ1FSrDf17iD8sdjt41LafwX/dKXW9nCcLQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-aria/ssr@3.9.7': - resolution: {integrity: sha512-GQygZaGlmYjmYM+tiNBA5C6acmiDWF52Nqd40bBp0Znk4M4hP+LTmI0lpI1BuKMw45T8RIhrAsICIfKwZvi2Gg==} - engines: {node: '>= 12'} + "@react-aria/ssr@3.9.7": + resolution: + { + integrity: sha512-GQygZaGlmYjmYM+tiNBA5C6acmiDWF52Nqd40bBp0Znk4M4hP+LTmI0lpI1BuKMw45T8RIhrAsICIfKwZvi2Gg==, + } + engines: { node: ">= 12" } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-aria/utils@3.26.0': - resolution: {integrity: sha512-LkZouGSjjQ0rEqo4XJosS4L3YC/zzQkfRM3KoqK6fUOmUJ9t0jQ09WjiF+uOoG9u+p30AVg3TrZRUWmoTS+koQ==} + "@react-aria/utils@3.26.0": + resolution: + { + integrity: sha512-LkZouGSjjQ0rEqo4XJosS4L3YC/zzQkfRM3KoqK6fUOmUJ9t0jQ09WjiF+uOoG9u+p30AVg3TrZRUWmoTS+koQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/utils@3.10.5': - resolution: {integrity: sha512-iMQSGcpaecghDIh3mZEpZfoFH3ExBwTtuBEcvZ2XnGzCgQjeYXcMdIUwAfVQLXFTdHUHGF6Gu6/dFrYsCzySBQ==} + "@react-stately/utils@3.10.5": + resolution: + { + integrity: sha512-iMQSGcpaecghDIh3mZEpZfoFH3ExBwTtuBEcvZ2XnGzCgQjeYXcMdIUwAfVQLXFTdHUHGF6Gu6/dFrYsCzySBQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/shared@3.26.0': - resolution: {integrity: sha512-6FuPqvhmjjlpEDLTiYx29IJCbCNWPlsyO+ZUmCUXzhUv2ttShOXfw8CmeHWHftT/b2KweAWuzqSlfeXPR76jpw==} + "@react-types/shared@3.26.0": + resolution: + { + integrity: sha512-6FuPqvhmjjlpEDLTiYx29IJCbCNWPlsyO+ZUmCUXzhUv2ttShOXfw8CmeHWHftT/b2KweAWuzqSlfeXPR76jpw==, + } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@remix-run/router@1.21.0': - resolution: {integrity: sha512-xfSkCAchbdG5PnbrKqFWwia4Bi61nH+wm8wLEqfHDyp7Y3dZzgqS2itV8i4gAq9pC2HsTpwyBC6Ds8VHZ96JlA==} - engines: {node: '>=14.0.0'} - - '@repeaterjs/repeater@3.0.6': - resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==} - - '@rollup/plugin-babel@5.3.1': - resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} - engines: {node: '>= 10.0.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 + "@remix-run/router@1.21.0": + resolution: + { + integrity: sha512-xfSkCAchbdG5PnbrKqFWwia4Bi61nH+wm8wLEqfHDyp7Y3dZzgqS2itV8i4gAq9pC2HsTpwyBC6Ds8VHZ96JlA==, + } + engines: { node: ">=14.0.0" } + + "@repeaterjs/repeater@3.0.6": + resolution: + { + integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==, + } + + "@rollup/plugin-babel@5.3.1": + resolution: + { + integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==, + } + engines: { node: ">= 10.0.0" } + peerDependencies: + "@babel/core": ^7.0.0 + "@types/babel__core": ^7.1.9 rollup: ^1.20.0||^2.0.0 peerDependenciesMeta: - '@types/babel__core': + "@types/babel__core": optional: true - '@rollup/plugin-node-resolve@15.3.1': - resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==} - engines: {node: '>=14.0.0'} + "@rollup/plugin-node-resolve@15.3.1": + resolution: + { + integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==, + } + engines: { node: ">=14.0.0" } peerDependencies: rollup: ^2.78.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - '@rollup/plugin-replace@2.4.2': - resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} + "@rollup/plugin-replace@2.4.2": + resolution: + { + integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==, + } peerDependencies: rollup: ^1.20.0 || ^2.0.0 - '@rollup/plugin-terser@0.4.4': - resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} - engines: {node: '>=14.0.0'} + "@rollup/plugin-terser@0.4.4": + resolution: + { + integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==, + } + engines: { node: ">=14.0.0" } peerDependencies: rollup: ^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - '@rollup/plugin-virtual@3.0.2': - resolution: {integrity: sha512-10monEYsBp3scM4/ND4LNH5Rxvh3e/cVeL3jWTgZ2SrQ+BmUoQcopVQvnaMcOnykb1VkxUFuDAN+0FnpTFRy2A==} - engines: {node: '>=14.0.0'} + "@rollup/plugin-virtual@3.0.2": + resolution: + { + integrity: sha512-10monEYsBp3scM4/ND4LNH5Rxvh3e/cVeL3jWTgZ2SrQ+BmUoQcopVQvnaMcOnykb1VkxUFuDAN+0FnpTFRy2A==, + } + engines: { node: ">=14.0.0" } peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - '@rollup/pluginutils@3.1.0': - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} + "@rollup/pluginutils@3.1.0": + resolution: + { + integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==, + } + engines: { node: ">= 8.0.0" } peerDependencies: rollup: ^1.20.0||^2.0.0 - '@rollup/pluginutils@5.1.4': - resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} - engines: {node: '>=14.0.0'} + "@rollup/pluginutils@5.1.4": + resolution: + { + integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==, + } + engines: { node: ">=14.0.0" } peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.30.1': - resolution: {integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==} + "@rollup/rollup-android-arm-eabi@4.30.1": + resolution: + { + integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==, + } cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.30.1': - resolution: {integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==} + "@rollup/rollup-android-arm64@4.30.1": + resolution: + { + integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==, + } cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.30.1': - resolution: {integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==} + "@rollup/rollup-darwin-arm64@4.30.1": + resolution: + { + integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==, + } cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.30.1': - resolution: {integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==} + "@rollup/rollup-darwin-x64@4.30.1": + resolution: + { + integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==, + } cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.30.1': - resolution: {integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==} + "@rollup/rollup-freebsd-arm64@4.30.1": + resolution: + { + integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==, + } cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.30.1': - resolution: {integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==} + "@rollup/rollup-freebsd-x64@4.30.1": + resolution: + { + integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==, + } cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.30.1': - resolution: {integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==} + "@rollup/rollup-linux-arm-gnueabihf@4.30.1": + resolution: + { + integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==, + } cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.30.1': - resolution: {integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==} + "@rollup/rollup-linux-arm-musleabihf@4.30.1": + resolution: + { + integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==, + } cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.30.1': - resolution: {integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==} + "@rollup/rollup-linux-arm64-gnu@4.30.1": + resolution: + { + integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==, + } cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.30.1': - resolution: {integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==} + "@rollup/rollup-linux-arm64-musl@4.30.1": + resolution: + { + integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==, + } cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.30.1': - resolution: {integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==} + "@rollup/rollup-linux-loongarch64-gnu@4.30.1": + resolution: + { + integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==, + } cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': - resolution: {integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==} + "@rollup/rollup-linux-powerpc64le-gnu@4.30.1": + resolution: + { + integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==, + } cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.30.1': - resolution: {integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==} + "@rollup/rollup-linux-riscv64-gnu@4.30.1": + resolution: + { + integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==, + } cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.30.1': - resolution: {integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==} + "@rollup/rollup-linux-s390x-gnu@4.30.1": + resolution: + { + integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==, + } cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.30.1': - resolution: {integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==} + "@rollup/rollup-linux-x64-gnu@4.30.1": + resolution: + { + integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==, + } cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.30.1': - resolution: {integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==} + "@rollup/rollup-linux-x64-musl@4.30.1": + resolution: + { + integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==, + } cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.30.1': - resolution: {integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==} + "@rollup/rollup-win32-arm64-msvc@4.30.1": + resolution: + { + integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==, + } cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.30.1': - resolution: {integrity: sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==} + "@rollup/rollup-win32-ia32-msvc@4.30.1": + resolution: + { + integrity: sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==, + } cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.30.1': - resolution: {integrity: sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==} + "@rollup/rollup-win32-x64-msvc@4.30.1": + resolution: + { + integrity: sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==, + } cpu: [x64] os: [win32] - '@rtsao/scc@1.1.0': - resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} - - '@scarf/scarf@1.4.0': - resolution: {integrity: sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==} - - '@scure/base@1.1.9': - resolution: {integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==} - - '@scure/base@1.2.1': - resolution: {integrity: sha512-DGmGtC8Tt63J5GfHgfl5CuAXh96VF/LD8K9Hr/Gv0J2lAoRGlPOMpqMpMbCTOoOJMZCk2Xt+DskdDyn6dEFdzQ==} - - '@scure/bip32@1.3.2': - resolution: {integrity: sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==} - - '@scure/bip32@1.6.0': - resolution: {integrity: sha512-82q1QfklrUUdXJzjuRU7iG7D7XiFx5PHYVS0+oeNKhyDLT7WPqs6pBcM2W5ZdwOwKCwoE1Vy1se+DHjcXwCYnA==} - - '@scure/bip32@1.6.1': - resolution: {integrity: sha512-jSO+5Ud1E588Y+LFo8TaB8JVPNAZw/lGGao+1SepHDeTs2dFLurdNIAgUuDlwezqEjRjElkCJajVrtrZaBxvaQ==} - - '@scure/bip39@1.2.1': - resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==} - - '@scure/bip39@1.5.0': - resolution: {integrity: sha512-Dop+ASYhnrwm9+HA/HwXg7j2ZqM6yk2fyLWb5znexjctFY3+E+eU8cIWI0Pql0Qx4hPZCijlGq4OL71g+Uz30A==} - - '@scure/starknet@0.3.0': - resolution: {integrity: sha512-Ma66yZlwa5z00qI5alSxdWtIpky5LBhy22acVFdoC5kwwbd9uDyMWEYzWHdNyKmQg9t5Y2UOXzINMeb3yez+Gw==} - - '@scure/starknet@1.0.0': - resolution: {integrity: sha512-o5J57zY0f+2IL/mq8+AYJJ4Xpc1fOtDhr+mFQKbHnYFmm3WQrC+8zj2HEgxak1a+x86mhmBC1Kq305KUpVf0wg==} - - '@scure/starknet@1.1.0': - resolution: {integrity: sha512-83g3M6Ix2qRsPN4wqLDqiRZ2GBNbjVWfboJE/9UjfG+MHr6oDSu/CWgy8hsBSJejr09DkkL+l0Ze4KVrlCIdtQ==} - - '@shikijs/core@1.26.1': - resolution: {integrity: sha512-yeo7sG+WZQblKPclUOKRPwkv1PyoHYkJ4gP9DzhFJbTdueKR7wYTI1vfF/bFi1NTgc545yG/DzvVhZgueVOXMA==} - - '@shikijs/engine-javascript@1.26.1': - resolution: {integrity: sha512-CRhA0b8CaSLxS0E9A4Bzcb3LKBNpykfo9F85ozlNyArxjo2NkijtiwrJZ6eHa+NT5I9Kox2IXVdjUsP4dilsmw==} - - '@shikijs/engine-oniguruma@1.26.1': - resolution: {integrity: sha512-F5XuxN1HljLuvfXv7d+mlTkV7XukC1cawdtOo+7pKgPD83CAB1Sf8uHqP3PK0u7njFH0ZhoXE1r+0JzEgAQ+kg==} - - '@shikijs/langs@1.26.1': - resolution: {integrity: sha512-oz/TQiIqZejEIZbGtn68hbJijAOTtYH4TMMSWkWYozwqdpKR3EXgILneQy26WItmJjp3xVspHdiUxUCws4gtuw==} - - '@shikijs/rehype@1.26.1': - resolution: {integrity: sha512-kzSFCNb8KZk6AyHgrNbZvzyPYi5WLBypCEPHYVanjv7IRjaVHLtXk/IEL4iEdkvccjOoOSo6W8jMZEBFkirI3w==} - - '@shikijs/themes@1.26.1': - resolution: {integrity: sha512-JDxVn+z+wgLCiUhBGx2OQrLCkKZQGzNH3nAxFir4PjUcYiyD8Jdms9izyxIogYmSwmoPTatFTdzyrRKbKlSfPA==} - - '@shikijs/transformers@1.26.1': - resolution: {integrity: sha512-IRLJEP7YxkRMsHo367+7qDlpWjsUu6O79pdlUlkcbF1A5TrF1Ln0FBNrgHA/i9p+IKXiiKNATURa6WXh3iq7Uw==} - - '@shikijs/twoslash@1.26.1': - resolution: {integrity: sha512-jgRt6c6y+rXVfpcLIAY8luCKDiadhozrLS1+xjXA6WcZ/5wCAB2oj+ubue+14UZkg2yLJaH0X7N8N2J7/X1YJQ==} - - '@shikijs/types@1.26.1': - resolution: {integrity: sha512-d4B00TKKAMaHuFYgRf3L0gwtvqpW4hVdVwKcZYbBfAAQXspgkbWqnFfuFl3MDH6gLbsubOcr+prcnsqah3ny7Q==} - - '@shikijs/vscode-textmate@10.0.1': - resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==} - - '@sinclair/typebox@0.27.8': - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - - '@starknet-io/types-js@0.7.10': - resolution: {integrity: sha512-1VtCqX4AHWJlRRSYGSn+4X1mqolI1Tdq62IwzoU2vUuEE72S1OlEeGhpvd6XsdqXcfHmVzYfj8k1XtKBQqwo9w==} - - '@starknet-react/chains@0.1.7': - resolution: {integrity: sha512-UNh97I1SvuJKaAhKOmpEk8JcWuZWMlPG/ba2HcvFYL9x/47BKndJ+Da9V+iJFtkHUjreVnajT1snsaz1XMG+UQ==} - - '@starknet-react/chains@3.1.1': - resolution: {integrity: sha512-1EboxfkZlmLNE3qegyq+/rJrj+FswQaI5j60y2l1mV6d/QuObtxwQhPAso1gklCnzr9p3G0NdZYB87P2QJfLhg==} - - '@starknet-react/core@2.3.0': - resolution: {integrity: sha512-8g9d0Gs811gJnQJHVMxQoXYhv+y5/qug7NQ0lnJ51uytdBhr/Zz5wgeTHW4ZQ5Igljyvf+ks+yhp4P1iSvnSqA==} + "@rtsao/scc@1.1.0": + resolution: + { + integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==, + } + + "@scarf/scarf@1.4.0": + resolution: + { + integrity: sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==, + } + + "@scure/base@1.1.9": + resolution: + { + integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==, + } + + "@scure/base@1.2.1": + resolution: + { + integrity: sha512-DGmGtC8Tt63J5GfHgfl5CuAXh96VF/LD8K9Hr/Gv0J2lAoRGlPOMpqMpMbCTOoOJMZCk2Xt+DskdDyn6dEFdzQ==, + } + + "@scure/bip32@1.3.2": + resolution: + { + integrity: sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==, + } + + "@scure/bip32@1.6.0": + resolution: + { + integrity: sha512-82q1QfklrUUdXJzjuRU7iG7D7XiFx5PHYVS0+oeNKhyDLT7WPqs6pBcM2W5ZdwOwKCwoE1Vy1se+DHjcXwCYnA==, + } + + "@scure/bip32@1.6.1": + resolution: + { + integrity: sha512-jSO+5Ud1E588Y+LFo8TaB8JVPNAZw/lGGao+1SepHDeTs2dFLurdNIAgUuDlwezqEjRjElkCJajVrtrZaBxvaQ==, + } + + "@scure/bip39@1.2.1": + resolution: + { + integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==, + } + + "@scure/bip39@1.5.0": + resolution: + { + integrity: sha512-Dop+ASYhnrwm9+HA/HwXg7j2ZqM6yk2fyLWb5znexjctFY3+E+eU8cIWI0Pql0Qx4hPZCijlGq4OL71g+Uz30A==, + } + + "@scure/starknet@0.3.0": + resolution: + { + integrity: sha512-Ma66yZlwa5z00qI5alSxdWtIpky5LBhy22acVFdoC5kwwbd9uDyMWEYzWHdNyKmQg9t5Y2UOXzINMeb3yez+Gw==, + } + + "@scure/starknet@1.0.0": + resolution: + { + integrity: sha512-o5J57zY0f+2IL/mq8+AYJJ4Xpc1fOtDhr+mFQKbHnYFmm3WQrC+8zj2HEgxak1a+x86mhmBC1Kq305KUpVf0wg==, + } + + "@scure/starknet@1.1.0": + resolution: + { + integrity: sha512-83g3M6Ix2qRsPN4wqLDqiRZ2GBNbjVWfboJE/9UjfG+MHr6oDSu/CWgy8hsBSJejr09DkkL+l0Ze4KVrlCIdtQ==, + } + + "@shikijs/core@1.26.1": + resolution: + { + integrity: sha512-yeo7sG+WZQblKPclUOKRPwkv1PyoHYkJ4gP9DzhFJbTdueKR7wYTI1vfF/bFi1NTgc545yG/DzvVhZgueVOXMA==, + } + + "@shikijs/engine-javascript@1.26.1": + resolution: + { + integrity: sha512-CRhA0b8CaSLxS0E9A4Bzcb3LKBNpykfo9F85ozlNyArxjo2NkijtiwrJZ6eHa+NT5I9Kox2IXVdjUsP4dilsmw==, + } + + "@shikijs/engine-oniguruma@1.26.1": + resolution: + { + integrity: sha512-F5XuxN1HljLuvfXv7d+mlTkV7XukC1cawdtOo+7pKgPD83CAB1Sf8uHqP3PK0u7njFH0ZhoXE1r+0JzEgAQ+kg==, + } + + "@shikijs/langs@1.26.1": + resolution: + { + integrity: sha512-oz/TQiIqZejEIZbGtn68hbJijAOTtYH4TMMSWkWYozwqdpKR3EXgILneQy26WItmJjp3xVspHdiUxUCws4gtuw==, + } + + "@shikijs/rehype@1.26.1": + resolution: + { + integrity: sha512-kzSFCNb8KZk6AyHgrNbZvzyPYi5WLBypCEPHYVanjv7IRjaVHLtXk/IEL4iEdkvccjOoOSo6W8jMZEBFkirI3w==, + } + + "@shikijs/themes@1.26.1": + resolution: + { + integrity: sha512-JDxVn+z+wgLCiUhBGx2OQrLCkKZQGzNH3nAxFir4PjUcYiyD8Jdms9izyxIogYmSwmoPTatFTdzyrRKbKlSfPA==, + } + + "@shikijs/transformers@1.26.1": + resolution: + { + integrity: sha512-IRLJEP7YxkRMsHo367+7qDlpWjsUu6O79pdlUlkcbF1A5TrF1Ln0FBNrgHA/i9p+IKXiiKNATURa6WXh3iq7Uw==, + } + + "@shikijs/twoslash@1.26.1": + resolution: + { + integrity: sha512-jgRt6c6y+rXVfpcLIAY8luCKDiadhozrLS1+xjXA6WcZ/5wCAB2oj+ubue+14UZkg2yLJaH0X7N8N2J7/X1YJQ==, + } + + "@shikijs/types@1.26.1": + resolution: + { + integrity: sha512-d4B00TKKAMaHuFYgRf3L0gwtvqpW4hVdVwKcZYbBfAAQXspgkbWqnFfuFl3MDH6gLbsubOcr+prcnsqah3ny7Q==, + } + + "@shikijs/vscode-textmate@10.0.1": + resolution: + { + integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==, + } + + "@sinclair/typebox@0.27.8": + resolution: + { + integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==, + } + + "@starknet-io/types-js@0.7.10": + resolution: + { + integrity: sha512-1VtCqX4AHWJlRRSYGSn+4X1mqolI1Tdq62IwzoU2vUuEE72S1OlEeGhpvd6XsdqXcfHmVzYfj8k1XtKBQqwo9w==, + } + + "@starknet-react/chains@0.1.7": + resolution: + { + integrity: sha512-UNh97I1SvuJKaAhKOmpEk8JcWuZWMlPG/ba2HcvFYL9x/47BKndJ+Da9V+iJFtkHUjreVnajT1snsaz1XMG+UQ==, + } + + "@starknet-react/chains@3.1.1": + resolution: + { + integrity: sha512-1EboxfkZlmLNE3qegyq+/rJrj+FswQaI5j60y2l1mV6d/QuObtxwQhPAso1gklCnzr9p3G0NdZYB87P2QJfLhg==, + } + + "@starknet-react/core@2.3.0": + resolution: + { + integrity: sha512-8g9d0Gs811gJnQJHVMxQoXYhv+y5/qug7NQ0lnJ51uytdBhr/Zz5wgeTHW4ZQ5Igljyvf+ks+yhp4P1iSvnSqA==, + } peerDependencies: get-starknet-core: ^3.2.0 react: ^18.0 starknet: ^5.25.0 - '@starknet-react/core@2.9.0': - resolution: {integrity: sha512-UdRo454/g2lb0YsNAUJohJ2w21LlahcEXQlkWrddoKFubRY6Q0b39hec0eZOCqfU0Z1Sh7kF1XYvI5t9xL4yTQ==} + "@starknet-react/core@2.9.0": + resolution: + { + integrity: sha512-UdRo454/g2lb0YsNAUJohJ2w21LlahcEXQlkWrddoKFubRY6Q0b39hec0eZOCqfU0Z1Sh7kF1XYvI5t9xL4yTQ==, + } peerDependencies: get-starknet-core: ^3.2.0 react: ^18.0 starknet: ^5.25.0 - '@starknet-react/core@3.6.3': - resolution: {integrity: sha512-838NJVlLKtb7TO9fr/PPBpelgtnsybDoI3NhPAGpBFheB/1ZvFKGWXf8NLJY1soY+ctCVTh1Uai4FH3VHa3R7A==} + "@starknet-react/core@3.6.3": + resolution: + { + integrity: sha512-838NJVlLKtb7TO9fr/PPBpelgtnsybDoI3NhPAGpBFheB/1ZvFKGWXf8NLJY1soY+ctCVTh1Uai4FH3VHa3R7A==, + } peerDependencies: get-starknet-core: ^4.0.0 react: ^18.0 starknet: ^6.11.0 - '@stitches/react@1.2.8': - resolution: {integrity: sha512-9g9dWI4gsSVe8bNLlb+lMkBYsnIKCZTmvqvDG+Avnn69XfmHZKiaMrx7cgTaddq7aTPPmXiTsbFcUy0xgI4+wA==} + "@stitches/react@1.2.8": + resolution: + { + integrity: sha512-9g9dWI4gsSVe8bNLlb+lMkBYsnIKCZTmvqvDG+Avnn69XfmHZKiaMrx7cgTaddq7aTPPmXiTsbFcUy0xgI4+wA==, + } peerDependencies: - react: '>= 16.3.0' + react: ">= 16.3.0" - '@storybook/addon-actions@8.4.7': - resolution: {integrity: sha512-mjtD5JxcPuW74T6h7nqMxWTvDneFtokg88p6kQ5OnC1M259iAXb//yiSZgu/quunMHPCXSiqn4FNOSgASTSbsA==} + "@storybook/addon-actions@8.4.7": + resolution: + { + integrity: sha512-mjtD5JxcPuW74T6h7nqMxWTvDneFtokg88p6kQ5OnC1M259iAXb//yiSZgu/quunMHPCXSiqn4FNOSgASTSbsA==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/addon-backgrounds@8.4.7': - resolution: {integrity: sha512-I4/aErqtFiazcoWyKafOAm3bLpxTj6eQuH/woSbk1Yx+EzN+Dbrgx1Updy8//bsNtKkcrXETITreqHC+a57DHQ==} + "@storybook/addon-backgrounds@8.4.7": + resolution: + { + integrity: sha512-I4/aErqtFiazcoWyKafOAm3bLpxTj6eQuH/woSbk1Yx+EzN+Dbrgx1Updy8//bsNtKkcrXETITreqHC+a57DHQ==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/addon-controls@8.4.7': - resolution: {integrity: sha512-377uo5IsJgXLnQLJixa47+11V+7Wn9KcDEw+96aGCBCfLbWNH8S08tJHHnSu+jXg9zoqCAC23MetntVp6LetHA==} + "@storybook/addon-controls@8.4.7": + resolution: + { + integrity: sha512-377uo5IsJgXLnQLJixa47+11V+7Wn9KcDEw+96aGCBCfLbWNH8S08tJHHnSu+jXg9zoqCAC23MetntVp6LetHA==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/addon-docs@8.4.7': - resolution: {integrity: sha512-NwWaiTDT5puCBSUOVuf6ME7Zsbwz7Y79WF5tMZBx/sLQ60vpmJVQsap6NSjvK1Ravhc21EsIXqemAcBjAWu80w==} + "@storybook/addon-docs@8.4.7": + resolution: + { + integrity: sha512-NwWaiTDT5puCBSUOVuf6ME7Zsbwz7Y79WF5tMZBx/sLQ60vpmJVQsap6NSjvK1Ravhc21EsIXqemAcBjAWu80w==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/addon-essentials@8.4.7': - resolution: {integrity: sha512-+BtZHCBrYtQKILtejKxh0CDRGIgTl9PumfBOKRaihYb4FX1IjSAxoV/oo/IfEjlkF5f87vouShWsRa8EUauFDw==} + "@storybook/addon-essentials@8.4.7": + resolution: + { + integrity: sha512-+BtZHCBrYtQKILtejKxh0CDRGIgTl9PumfBOKRaihYb4FX1IjSAxoV/oo/IfEjlkF5f87vouShWsRa8EUauFDw==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/addon-highlight@8.4.7': - resolution: {integrity: sha512-whQIDBd3PfVwcUCrRXvCUHWClXe9mQ7XkTPCdPo4B/tZ6Z9c6zD8JUHT76ddyHivixFLowMnA8PxMU6kCMAiNw==} + "@storybook/addon-highlight@8.4.7": + resolution: + { + integrity: sha512-whQIDBd3PfVwcUCrRXvCUHWClXe9mQ7XkTPCdPo4B/tZ6Z9c6zD8JUHT76ddyHivixFLowMnA8PxMU6kCMAiNw==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/addon-interactions@8.4.7': - resolution: {integrity: sha512-fnufT3ym8ht3HHUIRVXAH47iOJW/QOb0VSM+j269gDuvyDcY03D1civCu1v+eZLGaXPKJ8vtjr0L8zKQ/4P0JQ==} + "@storybook/addon-interactions@8.4.7": + resolution: + { + integrity: sha512-fnufT3ym8ht3HHUIRVXAH47iOJW/QOb0VSM+j269gDuvyDcY03D1civCu1v+eZLGaXPKJ8vtjr0L8zKQ/4P0JQ==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/addon-links@8.4.7': - resolution: {integrity: sha512-L/1h4dMeMKF+MM0DanN24v5p3faNYbbtOApMgg7SlcBT/tgo3+cAjkgmNpYA8XtKnDezm+T2mTDhB8mmIRZpIQ==} + "@storybook/addon-links@8.4.7": + resolution: + { + integrity: sha512-L/1h4dMeMKF+MM0DanN24v5p3faNYbbtOApMgg7SlcBT/tgo3+cAjkgmNpYA8XtKnDezm+T2mTDhB8mmIRZpIQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta storybook: ^8.4.7 @@ -3419,33 +4935,51 @@ packages: react: optional: true - '@storybook/addon-measure@8.4.7': - resolution: {integrity: sha512-QfvqYWDSI5F68mKvafEmZic3SMiK7zZM8VA0kTXx55hF/+vx61Mm0HccApUT96xCXIgmwQwDvn9gS4TkX81Dmw==} + "@storybook/addon-measure@8.4.7": + resolution: + { + integrity: sha512-QfvqYWDSI5F68mKvafEmZic3SMiK7zZM8VA0kTXx55hF/+vx61Mm0HccApUT96xCXIgmwQwDvn9gS4TkX81Dmw==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/addon-onboarding@8.4.7': - resolution: {integrity: sha512-FdC2NV60VNYeMxf6DVe0qV9ucSBAzMh1//C0Qqwq8CcjthMbmKlVZ7DqbVsbIHKnFaSCaUC88eR5olAfMaauCQ==} + "@storybook/addon-onboarding@8.4.7": + resolution: + { + integrity: sha512-FdC2NV60VNYeMxf6DVe0qV9ucSBAzMh1//C0Qqwq8CcjthMbmKlVZ7DqbVsbIHKnFaSCaUC88eR5olAfMaauCQ==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/addon-outline@8.4.7': - resolution: {integrity: sha512-6LYRqUZxSodmAIl8icr585Oi8pmzbZ90aloZJIpve+dBAzo7ydYrSQxxoQEVltXbKf3VeVcrs64ouAYqjisMYA==} + "@storybook/addon-outline@8.4.7": + resolution: + { + integrity: sha512-6LYRqUZxSodmAIl8icr585Oi8pmzbZ90aloZJIpve+dBAzo7ydYrSQxxoQEVltXbKf3VeVcrs64ouAYqjisMYA==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/addon-toolbars@8.4.7': - resolution: {integrity: sha512-OSfdv5UZs+NdGB+nZmbafGUWimiweJ/56gShlw8Neo/4jOJl1R3rnRqqY7MYx8E4GwoX+i3GF5C3iWFNQqlDcw==} + "@storybook/addon-toolbars@8.4.7": + resolution: + { + integrity: sha512-OSfdv5UZs+NdGB+nZmbafGUWimiweJ/56gShlw8Neo/4jOJl1R3rnRqqY7MYx8E4GwoX+i3GF5C3iWFNQqlDcw==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/addon-viewport@8.4.7': - resolution: {integrity: sha512-hvczh/jjuXXcOogih09a663sRDDSATXwbE866al1DXgbDFraYD/LxX/QDb38W9hdjU9+Qhx8VFIcNWoMQns5HQ==} + "@storybook/addon-viewport@8.4.7": + resolution: + { + integrity: sha512-hvczh/jjuXXcOogih09a663sRDDSATXwbE866al1DXgbDFraYD/LxX/QDb38W9hdjU9+Qhx8VFIcNWoMQns5HQ==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/blocks@8.4.7': - resolution: {integrity: sha512-+QH7+JwXXXIyP3fRCxz/7E2VZepAanXJM7G8nbR3wWsqWgrRp4Wra6MvybxAYCxU7aNfJX5c+RW84SNikFpcIA==} + "@storybook/blocks@8.4.7": + resolution: + { + integrity: sha512-+QH7+JwXXXIyP3fRCxz/7E2VZepAanXJM7G8nbR3wWsqWgrRp4Wra6MvybxAYCxU7aNfJX5c+RW84SNikFpcIA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta @@ -3456,647 +4990,1049 @@ packages: react-dom: optional: true - '@storybook/builder-vite@8.4.7': - resolution: {integrity: sha512-LovyXG5VM0w7CovI/k56ZZyWCveQFVDl0m7WwetpmMh2mmFJ+uPQ35BBsgTvTfc8RHi+9Q3F58qP1MQSByXi9g==} + "@storybook/builder-vite@8.4.7": + resolution: + { + integrity: sha512-LovyXG5VM0w7CovI/k56ZZyWCveQFVDl0m7WwetpmMh2mmFJ+uPQ35BBsgTvTfc8RHi+9Q3F58qP1MQSByXi9g==, + } peerDependencies: storybook: ^8.4.7 vite: ^4.0.0 || ^5.0.0 || ^6.0.0 - '@storybook/components@8.4.7': - resolution: {integrity: sha512-uyJIcoyeMWKAvjrG9tJBUCKxr2WZk+PomgrgrUwejkIfXMO76i6jw9BwLa0NZjYdlthDv30r9FfbYZyeNPmF0g==} + "@storybook/components@8.4.7": + resolution: + { + integrity: sha512-uyJIcoyeMWKAvjrG9tJBUCKxr2WZk+PomgrgrUwejkIfXMO76i6jw9BwLa0NZjYdlthDv30r9FfbYZyeNPmF0g==, + } peerDependencies: storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 - '@storybook/core@8.4.7': - resolution: {integrity: sha512-7Z8Z0A+1YnhrrSXoKKwFFI4gnsLbWzr8fnDCU6+6HlDukFYh8GHRcZ9zKfqmy6U3hw2h8H5DrHsxWfyaYUUOoA==} + "@storybook/core@8.4.7": + resolution: + { + integrity: sha512-7Z8Z0A+1YnhrrSXoKKwFFI4gnsLbWzr8fnDCU6+6HlDukFYh8GHRcZ9zKfqmy6U3hw2h8H5DrHsxWfyaYUUOoA==, + } peerDependencies: prettier: ^2 || ^3 peerDependenciesMeta: prettier: optional: true - '@storybook/csf-plugin@8.4.7': - resolution: {integrity: sha512-Fgogplu4HImgC+AYDcdGm1rmL6OR1rVdNX1Be9C/NEXwOCpbbBwi0BxTf/2ZxHRk9fCeaPEcOdP5S8QHfltc1g==} + "@storybook/csf-plugin@8.4.7": + resolution: + { + integrity: sha512-Fgogplu4HImgC+AYDcdGm1rmL6OR1rVdNX1Be9C/NEXwOCpbbBwi0BxTf/2ZxHRk9fCeaPEcOdP5S8QHfltc1g==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/csf@0.1.13': - resolution: {integrity: sha512-7xOOwCLGB3ebM87eemep89MYRFTko+D8qE7EdAAq74lgdqRR5cOUtYWJLjO2dLtP94nqoOdHJo6MdLLKzg412Q==} - - '@storybook/global@5.0.0': - resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} - - '@storybook/icons@1.3.0': - resolution: {integrity: sha512-Nz/UzeYQdUZUhacrPyfkiiysSjydyjgg/p0P9HxB4p/WaJUUjMAcaoaLgy3EXx61zZJ3iD36WPuDkZs5QYrA0A==} - engines: {node: '>=14.0.0'} + "@storybook/csf@0.1.13": + resolution: + { + integrity: sha512-7xOOwCLGB3ebM87eemep89MYRFTko+D8qE7EdAAq74lgdqRR5cOUtYWJLjO2dLtP94nqoOdHJo6MdLLKzg412Q==, + } + + "@storybook/global@5.0.0": + resolution: + { + integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==, + } + + "@storybook/icons@1.3.0": + resolution: + { + integrity: sha512-Nz/UzeYQdUZUhacrPyfkiiysSjydyjgg/p0P9HxB4p/WaJUUjMAcaoaLgy3EXx61zZJ3iD36WPuDkZs5QYrA0A==, + } + engines: { node: ">=14.0.0" } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - '@storybook/instrumenter@8.4.7': - resolution: {integrity: sha512-k6NSD3jaRCCHAFtqXZ7tw8jAzD/yTEWXGya+REgZqq5RCkmJ+9S4Ytp/6OhQMPtPFX23gAuJJzTQVLcCr+gjRg==} + "@storybook/instrumenter@8.4.7": + resolution: + { + integrity: sha512-k6NSD3jaRCCHAFtqXZ7tw8jAzD/yTEWXGya+REgZqq5RCkmJ+9S4Ytp/6OhQMPtPFX23gAuJJzTQVLcCr+gjRg==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/manager-api@8.4.7': - resolution: {integrity: sha512-ELqemTviCxAsZ5tqUz39sDmQkvhVAvAgiplYy9Uf15kO0SP2+HKsCMzlrm2ue2FfkUNyqbDayCPPCB0Cdn/mpQ==} + "@storybook/manager-api@8.4.7": + resolution: + { + integrity: sha512-ELqemTviCxAsZ5tqUz39sDmQkvhVAvAgiplYy9Uf15kO0SP2+HKsCMzlrm2ue2FfkUNyqbDayCPPCB0Cdn/mpQ==, + } peerDependencies: storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 - '@storybook/preview-api@8.4.7': - resolution: {integrity: sha512-0QVQwHw+OyZGHAJEXo6Knx+6/4er7n2rTDE5RYJ9F2E2Lg42E19pfdLlq2Jhoods2Xrclo3wj6GWR//Ahi39Eg==} + "@storybook/preview-api@8.4.7": + resolution: + { + integrity: sha512-0QVQwHw+OyZGHAJEXo6Knx+6/4er7n2rTDE5RYJ9F2E2Lg42E19pfdLlq2Jhoods2Xrclo3wj6GWR//Ahi39Eg==, + } peerDependencies: storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 - '@storybook/react-dom-shim@8.4.7': - resolution: {integrity: sha512-6bkG2jvKTmWrmVzCgwpTxwIugd7Lu+2btsLAqhQSzDyIj2/uhMNp8xIMr/NBDtLgq3nomt9gefNa9xxLwk/OMg==} + "@storybook/react-dom-shim@8.4.7": + resolution: + { + integrity: sha512-6bkG2jvKTmWrmVzCgwpTxwIugd7Lu+2btsLAqhQSzDyIj2/uhMNp8xIMr/NBDtLgq3nomt9gefNa9xxLwk/OMg==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta storybook: ^8.4.7 - '@storybook/react-vite@8.4.7': - resolution: {integrity: sha512-iiY9iLdMXhDnilCEVxU6vQsN72pW3miaf0WSenOZRyZv3HdbpgOxI0qapOS0KCyRUnX9vTlmrSPTMchY4cAeOg==} - engines: {node: '>=18.0.0'} + "@storybook/react-vite@8.4.7": + resolution: + { + integrity: sha512-iiY9iLdMXhDnilCEVxU6vQsN72pW3miaf0WSenOZRyZv3HdbpgOxI0qapOS0KCyRUnX9vTlmrSPTMchY4cAeOg==, + } + engines: { node: ">=18.0.0" } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta storybook: ^8.4.7 vite: ^4.0.0 || ^5.0.0 || ^6.0.0 - '@storybook/react@8.4.7': - resolution: {integrity: sha512-nQ0/7i2DkaCb7dy0NaT95llRVNYWQiPIVuhNfjr1mVhEP7XD090p0g7eqUmsx8vfdHh2BzWEo6CoBFRd3+EXxw==} - engines: {node: '>=18.0.0'} + "@storybook/react@8.4.7": + resolution: + { + integrity: sha512-nQ0/7i2DkaCb7dy0NaT95llRVNYWQiPIVuhNfjr1mVhEP7XD090p0g7eqUmsx8vfdHh2BzWEo6CoBFRd3+EXxw==, + } + engines: { node: ">=18.0.0" } peerDependencies: - '@storybook/test': 8.4.7 + "@storybook/test": 8.4.7 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta storybook: ^8.4.7 - typescript: '>= 4.2.x' + typescript: ">= 4.2.x" peerDependenciesMeta: - '@storybook/test': + "@storybook/test": optional: true typescript: optional: true - '@storybook/test@8.4.7': - resolution: {integrity: sha512-AhvJsu5zl3uG40itSQVuSy5WByp3UVhS6xAnme4FWRwgSxhvZjATJ3AZkkHWOYjnnk+P2/sbz/XuPli1FVCWoQ==} + "@storybook/test@8.4.7": + resolution: + { + integrity: sha512-AhvJsu5zl3uG40itSQVuSy5WByp3UVhS6xAnme4FWRwgSxhvZjATJ3AZkkHWOYjnnk+P2/sbz/XuPli1FVCWoQ==, + } peerDependencies: storybook: ^8.4.7 - '@storybook/theming@8.4.7': - resolution: {integrity: sha512-99rgLEjf7iwfSEmdqlHkSG3AyLcK0sfExcr0jnc6rLiAkBhzuIsvcHjjUwkR210SOCgXqBPW0ZA6uhnuyppHLw==} + "@storybook/theming@8.4.7": + resolution: + { + integrity: sha512-99rgLEjf7iwfSEmdqlHkSG3AyLcK0sfExcr0jnc6rLiAkBhzuIsvcHjjUwkR210SOCgXqBPW0ZA6uhnuyppHLw==, + } peerDependencies: storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 - '@surma/rollup-plugin-off-main-thread@2.2.3': - resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} - - '@svgr/babel-plugin-add-jsx-attribute@8.0.0': - resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': - resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': - resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0': - resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-svg-dynamic-title@8.0.0': - resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-svg-em-dimensions@8.0.0': - resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-transform-react-native-svg@8.1.0': - resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-plugin-transform-svg-component@8.0.0': - resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} - engines: {node: '>=12'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/babel-preset@8.1.0': - resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} - engines: {node: '>=14'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@svgr/core@8.1.0': - resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} - engines: {node: '>=14'} - - '@svgr/hast-util-to-babel-ast@8.0.0': - resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} - engines: {node: '>=14'} - - '@svgr/plugin-jsx@8.1.0': - resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} - engines: {node: '>=14'} - peerDependencies: - '@svgr/core': '*' - - '@svgr/plugin-svgo@8.1.0': - resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} - engines: {node: '>=14'} - peerDependencies: - '@svgr/core': '*' - - '@svgr/rollup@8.1.0': - resolution: {integrity: sha512-0XR1poYvPQoPpmfDYLEqUGu5ePAQ4pdgN3VFsZBNAeze7qubVpsIY1o1R6PZpKep/DKu33GSm2NhwpCLkMs2Cw==} - engines: {node: '>=14'} - - '@swc/core-darwin-arm64@1.10.4': - resolution: {integrity: sha512-sV/eurLhkjn/197y48bxKP19oqcLydSel42Qsy2zepBltqUx+/zZ8+/IS0Bi7kaWVFxerbW1IPB09uq8Zuvm3g==} - engines: {node: '>=10'} + "@surma/rollup-plugin-off-main-thread@2.2.3": + resolution: + { + integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==, + } + + "@svgr/babel-plugin-add-jsx-attribute@8.0.0": + resolution: + { + integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==, + } + engines: { node: ">=14" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@svgr/babel-plugin-remove-jsx-attribute@8.0.0": + resolution: + { + integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==, + } + engines: { node: ">=14" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0": + resolution: + { + integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==, + } + engines: { node: ">=14" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0": + resolution: + { + integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==, + } + engines: { node: ">=14" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@svgr/babel-plugin-svg-dynamic-title@8.0.0": + resolution: + { + integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==, + } + engines: { node: ">=14" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@svgr/babel-plugin-svg-em-dimensions@8.0.0": + resolution: + { + integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==, + } + engines: { node: ">=14" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@svgr/babel-plugin-transform-react-native-svg@8.1.0": + resolution: + { + integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==, + } + engines: { node: ">=14" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@svgr/babel-plugin-transform-svg-component@8.0.0": + resolution: + { + integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==, + } + engines: { node: ">=12" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@svgr/babel-preset@8.1.0": + resolution: + { + integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==, + } + engines: { node: ">=14" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@svgr/core@8.1.0": + resolution: + { + integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==, + } + engines: { node: ">=14" } + + "@svgr/hast-util-to-babel-ast@8.0.0": + resolution: + { + integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==, + } + engines: { node: ">=14" } + + "@svgr/plugin-jsx@8.1.0": + resolution: + { + integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==, + } + engines: { node: ">=14" } + peerDependencies: + "@svgr/core": "*" + + "@svgr/plugin-svgo@8.1.0": + resolution: + { + integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==, + } + engines: { node: ">=14" } + peerDependencies: + "@svgr/core": "*" + + "@svgr/rollup@8.1.0": + resolution: + { + integrity: sha512-0XR1poYvPQoPpmfDYLEqUGu5ePAQ4pdgN3VFsZBNAeze7qubVpsIY1o1R6PZpKep/DKu33GSm2NhwpCLkMs2Cw==, + } + engines: { node: ">=14" } + + "@swc/core-darwin-arm64@1.10.4": + resolution: + { + integrity: sha512-sV/eurLhkjn/197y48bxKP19oqcLydSel42Qsy2zepBltqUx+/zZ8+/IS0Bi7kaWVFxerbW1IPB09uq8Zuvm3g==, + } + engines: { node: ">=10" } cpu: [arm64] os: [darwin] - '@swc/core-darwin-x64@1.10.4': - resolution: {integrity: sha512-gjYNU6vrAUO4+FuovEo9ofnVosTFXkF0VDuo1MKPItz6e2pxc2ale4FGzLw0Nf7JB1sX4a8h06CN16/pLJ8Q2w==} - engines: {node: '>=10'} + "@swc/core-darwin-x64@1.10.4": + resolution: + { + integrity: sha512-gjYNU6vrAUO4+FuovEo9ofnVosTFXkF0VDuo1MKPItz6e2pxc2ale4FGzLw0Nf7JB1sX4a8h06CN16/pLJ8Q2w==, + } + engines: { node: ">=10" } cpu: [x64] os: [darwin] - '@swc/core-linux-arm-gnueabihf@1.10.4': - resolution: {integrity: sha512-zd7fXH5w8s+Sfvn2oO464KDWl+ZX1MJiVmE4Pdk46N3PEaNwE0koTfgx2vQRqRG4vBBobzVvzICC3618WcefOA==} - engines: {node: '>=10'} + "@swc/core-linux-arm-gnueabihf@1.10.4": + resolution: + { + integrity: sha512-zd7fXH5w8s+Sfvn2oO464KDWl+ZX1MJiVmE4Pdk46N3PEaNwE0koTfgx2vQRqRG4vBBobzVvzICC3618WcefOA==, + } + engines: { node: ">=10" } cpu: [arm] os: [linux] - '@swc/core-linux-arm64-gnu@1.10.4': - resolution: {integrity: sha512-+UGfoHDxsMZgFD3tABKLeEZHqLNOkxStu+qCG7atGBhS4Slri6h6zijVvf4yI5X3kbXdvc44XV/hrP/Klnui2A==} - engines: {node: '>=10'} + "@swc/core-linux-arm64-gnu@1.10.4": + resolution: + { + integrity: sha512-+UGfoHDxsMZgFD3tABKLeEZHqLNOkxStu+qCG7atGBhS4Slri6h6zijVvf4yI5X3kbXdvc44XV/hrP/Klnui2A==, + } + engines: { node: ">=10" } cpu: [arm64] os: [linux] - '@swc/core-linux-arm64-musl@1.10.4': - resolution: {integrity: sha512-cDDj2/uYsOH0pgAnDkovLZvKJpFmBMyXkxEG6Q4yw99HbzO6QzZ5HDGWGWVq/6dLgYKlnnmpjZCPPQIu01mXEg==} - engines: {node: '>=10'} + "@swc/core-linux-arm64-musl@1.10.4": + resolution: + { + integrity: sha512-cDDj2/uYsOH0pgAnDkovLZvKJpFmBMyXkxEG6Q4yw99HbzO6QzZ5HDGWGWVq/6dLgYKlnnmpjZCPPQIu01mXEg==, + } + engines: { node: ">=10" } cpu: [arm64] os: [linux] - '@swc/core-linux-x64-gnu@1.10.4': - resolution: {integrity: sha512-qJXh9D6Kf5xSdGWPINpLGixAbB5JX8JcbEJpRamhlDBoOcQC79dYfOMEIxWPhTS1DGLyFakAx2FX/b2VmQmj0g==} - engines: {node: '>=10'} + "@swc/core-linux-x64-gnu@1.10.4": + resolution: + { + integrity: sha512-qJXh9D6Kf5xSdGWPINpLGixAbB5JX8JcbEJpRamhlDBoOcQC79dYfOMEIxWPhTS1DGLyFakAx2FX/b2VmQmj0g==, + } + engines: { node: ">=10" } cpu: [x64] os: [linux] - '@swc/core-linux-x64-musl@1.10.4': - resolution: {integrity: sha512-A76lIAeyQnHCVt0RL/pG+0er8Qk9+acGJqSZOZm67Ve3B0oqMd871kPtaHBM0BW3OZAhoILgfHW3Op9Q3mx3Cw==} - engines: {node: '>=10'} + "@swc/core-linux-x64-musl@1.10.4": + resolution: + { + integrity: sha512-A76lIAeyQnHCVt0RL/pG+0er8Qk9+acGJqSZOZm67Ve3B0oqMd871kPtaHBM0BW3OZAhoILgfHW3Op9Q3mx3Cw==, + } + engines: { node: ">=10" } cpu: [x64] os: [linux] - '@swc/core-win32-arm64-msvc@1.10.4': - resolution: {integrity: sha512-e6j5kBu4fIY7fFxFxnZI0MlEovRvp50Lg59Fw+DVbtqHk3C85dckcy5xKP+UoXeuEmFceauQDczUcGs19SRGSQ==} - engines: {node: '>=10'} + "@swc/core-win32-arm64-msvc@1.10.4": + resolution: + { + integrity: sha512-e6j5kBu4fIY7fFxFxnZI0MlEovRvp50Lg59Fw+DVbtqHk3C85dckcy5xKP+UoXeuEmFceauQDczUcGs19SRGSQ==, + } + engines: { node: ">=10" } cpu: [arm64] os: [win32] - '@swc/core-win32-ia32-msvc@1.10.4': - resolution: {integrity: sha512-RSYHfdKgNXV/amY5Tqk1EWVsyQnhlsM//jeqMLw5Fy9rfxP592W9UTumNikNRPdjI8wKKzNMXDb1U29tQjN0dg==} - engines: {node: '>=10'} + "@swc/core-win32-ia32-msvc@1.10.4": + resolution: + { + integrity: sha512-RSYHfdKgNXV/amY5Tqk1EWVsyQnhlsM//jeqMLw5Fy9rfxP592W9UTumNikNRPdjI8wKKzNMXDb1U29tQjN0dg==, + } + engines: { node: ">=10" } cpu: [ia32] os: [win32] - '@swc/core-win32-x64-msvc@1.10.4': - resolution: {integrity: sha512-1ujYpaqfqNPYdwKBlvJnOqcl+Syn3UrQ4XE0Txz6zMYgyh6cdU6a3pxqLqIUSJ12MtXRA9ZUhEz1ekU3LfLWXw==} - engines: {node: '>=10'} + "@swc/core-win32-x64-msvc@1.10.4": + resolution: + { + integrity: sha512-1ujYpaqfqNPYdwKBlvJnOqcl+Syn3UrQ4XE0Txz6zMYgyh6cdU6a3pxqLqIUSJ12MtXRA9ZUhEz1ekU3LfLWXw==, + } + engines: { node: ">=10" } cpu: [x64] os: [win32] - '@swc/core@1.10.4': - resolution: {integrity: sha512-ut3zfiTLORMxhr6y/GBxkHmzcGuVpwJYX4qyXWuBKkpw/0g0S5iO1/wW7RnLnZbAi8wS/n0atRZoaZlXWBkeJg==} - engines: {node: '>=10'} + "@swc/core@1.10.4": + resolution: + { + integrity: sha512-ut3zfiTLORMxhr6y/GBxkHmzcGuVpwJYX4qyXWuBKkpw/0g0S5iO1/wW7RnLnZbAi8wS/n0atRZoaZlXWBkeJg==, + } + engines: { node: ">=10" } peerDependencies: - '@swc/helpers': '*' + "@swc/helpers": "*" peerDependenciesMeta: - '@swc/helpers': + "@swc/helpers": optional: true - '@swc/counter@0.1.3': - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - - '@swc/helpers@0.5.15': - resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} - - '@swc/types@0.1.17': - resolution: {integrity: sha512-V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ==} - - '@tailwindcss/typography@0.5.16': - resolution: {integrity: sha512-0wDLwCVF5V3x3b1SGXPCDcdsbDHMBe+lkFzBRaHeLvNi+nrrnZ1lA18u+OTWO8iSWU2GxUOCvlXtDuqftc1oiA==} - peerDependencies: - tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1' - - '@tanstack/history@1.95.0': - resolution: {integrity: sha512-w1/yWuIBqmG0Z0MPMf1OuOCce7FXyVH4L4dIA4rvpnjIUCH8qRUgloFAVg37nTMUbOmhMsY2NZDxCpKBv+CLJg==} - engines: {node: '>=12'} - - '@tanstack/query-core@5.62.16': - resolution: {integrity: sha512-9Sgft7Qavcd+sN0V25xVyo0nfmcZXBuODy3FVG7BMWTg1HMLm8wwG5tNlLlmSic1u7l1v786oavn+STiFaPH2g==} - - '@tanstack/react-query@5.62.16': - resolution: {integrity: sha512-XJIZNj65d2IdvU8VBESmrPakfIm6FSdHDzrS1dPrAwmq3ZX+9riMh/ZfbNQHAWnhrgmq7KoXpgZSRyXnqMYT9A==} + "@swc/counter@0.1.3": + resolution: + { + integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==, + } + + "@swc/helpers@0.5.15": + resolution: + { + integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==, + } + + "@swc/types@0.1.17": + resolution: + { + integrity: sha512-V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ==, + } + + "@tailwindcss/typography@0.5.16": + resolution: + { + integrity: sha512-0wDLwCVF5V3x3b1SGXPCDcdsbDHMBe+lkFzBRaHeLvNi+nrrnZ1lA18u+OTWO8iSWU2GxUOCvlXtDuqftc1oiA==, + } + peerDependencies: + tailwindcss: ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1" + + "@tanstack/history@1.95.0": + resolution: + { + integrity: sha512-w1/yWuIBqmG0Z0MPMf1OuOCce7FXyVH4L4dIA4rvpnjIUCH8qRUgloFAVg37nTMUbOmhMsY2NZDxCpKBv+CLJg==, + } + engines: { node: ">=12" } + + "@tanstack/query-core@5.62.16": + resolution: + { + integrity: sha512-9Sgft7Qavcd+sN0V25xVyo0nfmcZXBuODy3FVG7BMWTg1HMLm8wwG5tNlLlmSic1u7l1v786oavn+STiFaPH2g==, + } + + "@tanstack/react-query@5.62.16": + resolution: + { + integrity: sha512-XJIZNj65d2IdvU8VBESmrPakfIm6FSdHDzrS1dPrAwmq3ZX+9riMh/ZfbNQHAWnhrgmq7KoXpgZSRyXnqMYT9A==, + } peerDependencies: react: ^18 || ^19 - '@tanstack/react-router@1.95.1': - resolution: {integrity: sha512-P5x4yNhcdkYsCEoYeGZP8Q9Jlxf0WXJa4G/xvbmM905seZc9FqJqvCSRvX3dWTPOXRABhl4g+8DHqfft0c/AvQ==} - engines: {node: '>=12'} + "@tanstack/react-router@1.95.1": + resolution: + { + integrity: sha512-P5x4yNhcdkYsCEoYeGZP8Q9Jlxf0WXJa4G/xvbmM905seZc9FqJqvCSRvX3dWTPOXRABhl4g+8DHqfft0c/AvQ==, + } + engines: { node: ">=12" } peerDependencies: - react: '>=18' - react-dom: '>=18' + react: ">=18" + react-dom: ">=18" - '@tanstack/react-store@0.7.0': - resolution: {integrity: sha512-S/Rq17HaGOk+tQHV/yrePMnG1xbsKZIl/VsNWnNXt4XW+tTY8dTlvpJH2ZQ3GRALsusG5K6Q3unAGJ2pd9W/Ng==} + "@tanstack/react-store@0.7.0": + resolution: + { + integrity: sha512-S/Rq17HaGOk+tQHV/yrePMnG1xbsKZIl/VsNWnNXt4XW+tTY8dTlvpJH2ZQ3GRALsusG5K6Q3unAGJ2pd9W/Ng==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - '@tanstack/react-table@8.20.6': - resolution: {integrity: sha512-w0jluT718MrOKthRcr2xsjqzx+oEM7B7s/XXyfs19ll++hlId3fjTm+B2zrR3ijpANpkzBAr15j1XGVOMxpggQ==} - engines: {node: '>=12'} + "@tanstack/react-table@8.20.6": + resolution: + { + integrity: sha512-w0jluT718MrOKthRcr2xsjqzx+oEM7B7s/XXyfs19ll++hlId3fjTm+B2zrR3ijpANpkzBAr15j1XGVOMxpggQ==, + } + engines: { node: ">=12" } peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' + react: ">=16.8" + react-dom: ">=16.8" - '@tanstack/react-virtual@3.11.2': - resolution: {integrity: sha512-OuFzMXPF4+xZgx8UzJha0AieuMihhhaWG0tCqpp6tDzlFwOmNBPYMuLOtMJ1Tr4pXLHmgjcWhG6RlknY2oNTdQ==} + "@tanstack/react-virtual@3.11.2": + resolution: + { + integrity: sha512-OuFzMXPF4+xZgx8UzJha0AieuMihhhaWG0tCqpp6tDzlFwOmNBPYMuLOtMJ1Tr4pXLHmgjcWhG6RlknY2oNTdQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - '@tanstack/router-devtools@1.95.1': - resolution: {integrity: sha512-3EtYN0k9QxamQgmIH2SeDQDkrydH3Z1noFXKovBOePXKGjebyrlXV8VxBxNerx0TWQjxvlESiJM9DOxOlGujPg==} - engines: {node: '>=12'} - peerDependencies: - '@tanstack/react-router': ^1.95.1 - react: '>=18' - react-dom: '>=18' - - '@tanstack/router-generator@1.95.1': - resolution: {integrity: sha512-bUymh20C9AdtwLdZkgfx04S3N9yvm8S60xFFJu1dyYI7gn5g4aPSPYaQKYFmPhc+kQJ67ZbmWVkFBKHZ8YGYvA==} - engines: {node: '>=12'} - peerDependencies: - '@tanstack/react-router': ^1.95.1 + "@tanstack/router-devtools@1.95.1": + resolution: + { + integrity: sha512-3EtYN0k9QxamQgmIH2SeDQDkrydH3Z1noFXKovBOePXKGjebyrlXV8VxBxNerx0TWQjxvlESiJM9DOxOlGujPg==, + } + engines: { node: ">=12" } + peerDependencies: + "@tanstack/react-router": ^1.95.1 + react: ">=18" + react-dom: ">=18" + + "@tanstack/router-generator@1.95.1": + resolution: + { + integrity: sha512-bUymh20C9AdtwLdZkgfx04S3N9yvm8S60xFFJu1dyYI7gn5g4aPSPYaQKYFmPhc+kQJ67ZbmWVkFBKHZ8YGYvA==, + } + engines: { node: ">=12" } + peerDependencies: + "@tanstack/react-router": ^1.95.1 peerDependenciesMeta: - '@tanstack/react-router': + "@tanstack/react-router": optional: true - '@tanstack/router-plugin@1.95.1': - resolution: {integrity: sha512-d8iIaehb/6fAUdhHOuIP/9B9pEXLy0AWTX8yWIK9PB3r/kSShWqNDrx7Qj0O6dg3xK3yiwHSNqPQMtA03s0vag==} - engines: {node: '>=12'} + "@tanstack/router-plugin@1.95.1": + resolution: + { + integrity: sha512-d8iIaehb/6fAUdhHOuIP/9B9pEXLy0AWTX8yWIK9PB3r/kSShWqNDrx7Qj0O6dg3xK3yiwHSNqPQMtA03s0vag==, + } + engines: { node: ">=12" } peerDependencies: - '@rsbuild/core': '>=1.0.2' - vite: '>=5.0.0 || >=6.0.0' - webpack: '>=5.92.0' + "@rsbuild/core": ">=1.0.2" + vite: ">=5.0.0 || >=6.0.0" + webpack: ">=5.92.0" peerDependenciesMeta: - '@rsbuild/core': + "@rsbuild/core": optional: true vite: optional: true webpack: optional: true - '@tanstack/store@0.7.0': - resolution: {integrity: sha512-CNIhdoUsmD2NolYuaIs8VfWM467RK6oIBAW4nPEKZhg1smZ+/CwtCdpURgp7nxSqOaV9oKkzdWD80+bC66F/Jg==} - - '@tanstack/table-core@8.20.5': - resolution: {integrity: sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==} - engines: {node: '>=12'} - - '@tanstack/virtual-core@3.11.2': - resolution: {integrity: sha512-vTtpNt7mKCiZ1pwU9hfKPhpdVO2sVzFQsxoVBGtOSHxlrRRzYr8iQ2TlwbAcRYCcEiZ9ECAM8kBzH0v2+VzfKw==} - - '@tanstack/virtual-file-routes@1.87.6': - resolution: {integrity: sha512-PTpeM8SHL7AJM0pJOacFvHribbUODS51qe9NsMqku4mogh6BWObY1EeVmeGnp9o3VngAEsf+rJMs2zqIVz3WFA==} - engines: {node: '>=12'} - - '@telegram-apps/bridge@1.9.2': - resolution: {integrity: sha512-SJLcNWLXhbbZr9MiqFH/g2ceuitSJKMxUIZysK4zUNyTUNuonrQG80Q/yrO+XiNbKUj8WdDNM86NBARhuyyinQ==} - - '@telegram-apps/navigation@1.0.13': - resolution: {integrity: sha512-TsUueB5LQp77GQHoMa93nq26Uw7GJjrFCPbyseMVU7aBBxAc+8CV2IYytRwcVp5sv/q7ThK5X4JaKn2V1yBHDQ==} - - '@telegram-apps/sdk@2.11.3': - resolution: {integrity: sha512-KdULzgRe1gcR8B3Z/t3hQrEaDmLGrfsL2IePtPP6ehtMn5tT0uPfnjtDLjDNQMyI7D4Tv2ZOzvDx45wOhhreXg==} - - '@telegram-apps/signals@1.1.1': - resolution: {integrity: sha512-vz37r8lemGpPzDiBRfqpXYBynzmy3SFnY6zfHsTZABTYYt0b0WQZyU5mFDqqqugGhka78Gy11xmr9csgy4YgGA==} - - '@telegram-apps/toolkit@1.1.1': - resolution: {integrity: sha512-+vhKx6ngfvjyTE6Xagl3z1TPVbfx5s7xAkcYzCdHYUo6T60jLIqLgyZMcI1UPoIAMuMu1pHoO+p8QNCj/+tFmw==} - - '@telegram-apps/transformers@1.2.2': - resolution: {integrity: sha512-vvMwXckd1D7Ozc0h66PSUwF5QLrRV9HlGJFFeBuUex8QEk5mSPtsJkLiqB8aBbwuFDa91+TUSM/CxqPZO/e9YQ==} - - '@telegram-apps/types@1.2.1': - resolution: {integrity: sha512-so4HLh7clur0YyMthi9KVIgWoGpZdXlFOuQjk3+Q5NAvJZ11nAheBSwPlGw/Ko92+zwvrSBE/lQyN2+p17RP+w==} - - '@testing-library/dom@10.4.0': - resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==} - engines: {node: '>=18'} - - '@testing-library/jest-dom@6.5.0': - resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - - '@testing-library/user-event@14.5.2': - resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} - engines: {node: '>=12', npm: '>=6'} - peerDependencies: - '@testing-library/dom': '>=7.21.4' - - '@trysound/sax@0.2.0': - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - - '@tweenjs/tween.js@23.1.3': - resolution: {integrity: sha512-vJmvvwFxYuGnF2axRtPYocag6Clbb5YS7kLL+SO/TeVFzHqDIWrNKYtcsPMibjDx9O+bu+psAy9NKfWklassUA==} - - '@types/acorn@4.0.6': - resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} - - '@types/aria-query@5.0.4': - resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} - - '@types/babel__core@7.20.5': - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} - - '@types/babel__generator@7.6.8': - resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} - - '@types/babel__template@7.4.4': - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} - - '@types/babel__traverse@7.20.6': - resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} - - '@types/bun@1.1.15': - resolution: {integrity: sha512-Fi7ND1jCq8O5iU3s9z3TKHggD0hidgpe7wSxyisviXpbMmY4B1KiokF3f/mmjOoDrEcf873tSpixgen7Wm9X0g==} - - '@types/debug@4.1.12': - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} - - '@types/doctrine@0.0.9': - resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} - - '@types/draco3d@1.4.10': - resolution: {integrity: sha512-AX22jp8Y7wwaBgAixaSvkoG4M/+PlAcm3Qs4OW8yT9DM4xUpWKeFhLueTAyZF39pviAdcDdeJoACapiAceqNcw==} - - '@types/estree-jsx@1.0.5': - resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} - - '@types/estree@0.0.39': - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - - '@types/estree@1.0.6': - resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} - - '@types/hast@3.0.4': - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} - - '@types/js-yaml@4.0.9': - resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} - - '@types/json-schema@7.0.15': - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - - '@types/json5@0.0.29': - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - - '@types/lodash@4.17.14': - resolution: {integrity: sha512-jsxagdikDiDBeIRaPYtArcT8my4tN1og7MtMRquFT3XNA6axxyHDRUemqDz/taRDdOUn0GnGHRCuff4q48sW9A==} - - '@types/mdast@4.0.4': - resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} - - '@types/mdx@2.0.13': - resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} - - '@types/ms@0.7.34': - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - - '@types/node@20.12.14': - resolution: {integrity: sha512-scnD59RpYD91xngrQQLGkE+6UrHUPzeKZWhhjBSa3HSkwjbQc38+q3RoIVEwxQGRw3M+j5hpNAM+lgV3cVormg==} - - '@types/node@20.17.12': - resolution: {integrity: sha512-vo/wmBgMIiEA23A/knMfn/cf37VnuF52nZh5ZoW0GWt4e4sxNquibrMRJ7UQsA06+MBx9r/H1jsI9grYjQCQlw==} - - '@types/offscreencanvas@2019.7.3': - resolution: {integrity: sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A==} - - '@types/prop-types@15.7.14': - resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==} - - '@types/react-dom@18.3.5': - resolution: {integrity: sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==} - peerDependencies: - '@types/react': ^18.0.0 - - '@types/react@18.3.18': - resolution: {integrity: sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==} - - '@types/resolve@1.20.2': - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - - '@types/resolve@1.20.6': - resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} - - '@types/stats.js@0.17.3': - resolution: {integrity: sha512-pXNfAD3KHOdif9EQXZ9deK82HVNaXP5ZIF5RP2QG6OQFNTaY2YIetfrE9t528vEreGQvEPRDDc8muaoYeK0SxQ==} - - '@types/three@0.163.0': - resolution: {integrity: sha512-uIdDhsXRpQiBUkflBS/i1l3JX14fW6Ot9csed60nfbZNXHDTRsnV2xnTVwXcgbvTiboAR4IW+t+lTL5f1rqIqA==} - - '@types/trusted-types@2.0.7': - resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} - - '@types/unist@2.0.11': - resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} - - '@types/unist@3.0.3': - resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} - - '@types/uuid@9.0.8': - resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} - - '@types/webxr@0.5.20': - resolution: {integrity: sha512-JGpU6qiIJQKUuVSKx1GtQnHJGxRjtfGIhzO2ilq43VZZS//f1h1Sgexbdk+Lq+7569a6EYhOWrUpIruR/1Enmg==} - - '@types/ws@8.5.13': - resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==} - - '@typescript-eslint/eslint-plugin@7.18.0': - resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==} - engines: {node: ^18.18.0 || >=20.0.0} - peerDependencies: - '@typescript-eslint/parser': ^7.0.0 + "@tanstack/store@0.7.0": + resolution: + { + integrity: sha512-CNIhdoUsmD2NolYuaIs8VfWM467RK6oIBAW4nPEKZhg1smZ+/CwtCdpURgp7nxSqOaV9oKkzdWD80+bC66F/Jg==, + } + + "@tanstack/table-core@8.20.5": + resolution: + { + integrity: sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==, + } + engines: { node: ">=12" } + + "@tanstack/virtual-core@3.11.2": + resolution: + { + integrity: sha512-vTtpNt7mKCiZ1pwU9hfKPhpdVO2sVzFQsxoVBGtOSHxlrRRzYr8iQ2TlwbAcRYCcEiZ9ECAM8kBzH0v2+VzfKw==, + } + + "@tanstack/virtual-file-routes@1.87.6": + resolution: + { + integrity: sha512-PTpeM8SHL7AJM0pJOacFvHribbUODS51qe9NsMqku4mogh6BWObY1EeVmeGnp9o3VngAEsf+rJMs2zqIVz3WFA==, + } + engines: { node: ">=12" } + + "@telegram-apps/bridge@1.9.2": + resolution: + { + integrity: sha512-SJLcNWLXhbbZr9MiqFH/g2ceuitSJKMxUIZysK4zUNyTUNuonrQG80Q/yrO+XiNbKUj8WdDNM86NBARhuyyinQ==, + } + + "@telegram-apps/navigation@1.0.13": + resolution: + { + integrity: sha512-TsUueB5LQp77GQHoMa93nq26Uw7GJjrFCPbyseMVU7aBBxAc+8CV2IYytRwcVp5sv/q7ThK5X4JaKn2V1yBHDQ==, + } + + "@telegram-apps/sdk@2.11.3": + resolution: + { + integrity: sha512-KdULzgRe1gcR8B3Z/t3hQrEaDmLGrfsL2IePtPP6ehtMn5tT0uPfnjtDLjDNQMyI7D4Tv2ZOzvDx45wOhhreXg==, + } + + "@telegram-apps/signals@1.1.1": + resolution: + { + integrity: sha512-vz37r8lemGpPzDiBRfqpXYBynzmy3SFnY6zfHsTZABTYYt0b0WQZyU5mFDqqqugGhka78Gy11xmr9csgy4YgGA==, + } + + "@telegram-apps/toolkit@1.1.1": + resolution: + { + integrity: sha512-+vhKx6ngfvjyTE6Xagl3z1TPVbfx5s7xAkcYzCdHYUo6T60jLIqLgyZMcI1UPoIAMuMu1pHoO+p8QNCj/+tFmw==, + } + + "@telegram-apps/transformers@1.2.2": + resolution: + { + integrity: sha512-vvMwXckd1D7Ozc0h66PSUwF5QLrRV9HlGJFFeBuUex8QEk5mSPtsJkLiqB8aBbwuFDa91+TUSM/CxqPZO/e9YQ==, + } + + "@telegram-apps/types@1.2.1": + resolution: + { + integrity: sha512-so4HLh7clur0YyMthi9KVIgWoGpZdXlFOuQjk3+Q5NAvJZ11nAheBSwPlGw/Ko92+zwvrSBE/lQyN2+p17RP+w==, + } + + "@testing-library/dom@10.4.0": + resolution: + { + integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==, + } + engines: { node: ">=18" } + + "@testing-library/jest-dom@6.5.0": + resolution: + { + integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==, + } + engines: { node: ">=14", npm: ">=6", yarn: ">=1" } + + "@testing-library/user-event@14.5.2": + resolution: + { + integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==, + } + engines: { node: ">=12", npm: ">=6" } + peerDependencies: + "@testing-library/dom": ">=7.21.4" + + "@trysound/sax@0.2.0": + resolution: + { + integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==, + } + engines: { node: ">=10.13.0" } + + "@tweenjs/tween.js@23.1.3": + resolution: + { + integrity: sha512-vJmvvwFxYuGnF2axRtPYocag6Clbb5YS7kLL+SO/TeVFzHqDIWrNKYtcsPMibjDx9O+bu+psAy9NKfWklassUA==, + } + + "@types/acorn@4.0.6": + resolution: + { + integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==, + } + + "@types/aria-query@5.0.4": + resolution: + { + integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==, + } + + "@types/babel__core@7.20.5": + resolution: + { + integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==, + } + + "@types/babel__generator@7.6.8": + resolution: + { + integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==, + } + + "@types/babel__template@7.4.4": + resolution: + { + integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==, + } + + "@types/babel__traverse@7.20.6": + resolution: + { + integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==, + } + + "@types/bun@1.1.15": + resolution: + { + integrity: sha512-Fi7ND1jCq8O5iU3s9z3TKHggD0hidgpe7wSxyisviXpbMmY4B1KiokF3f/mmjOoDrEcf873tSpixgen7Wm9X0g==, + } + + "@types/debug@4.1.12": + resolution: + { + integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==, + } + + "@types/doctrine@0.0.9": + resolution: + { + integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==, + } + + "@types/draco3d@1.4.10": + resolution: + { + integrity: sha512-AX22jp8Y7wwaBgAixaSvkoG4M/+PlAcm3Qs4OW8yT9DM4xUpWKeFhLueTAyZF39pviAdcDdeJoACapiAceqNcw==, + } + + "@types/estree-jsx@1.0.5": + resolution: + { + integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==, + } + + "@types/estree@0.0.39": + resolution: + { + integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==, + } + + "@types/estree@1.0.6": + resolution: + { + integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==, + } + + "@types/hast@3.0.4": + resolution: + { + integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==, + } + + "@types/js-yaml@4.0.9": + resolution: + { + integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==, + } + + "@types/json-schema@7.0.15": + resolution: + { + integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, + } + + "@types/json5@0.0.29": + resolution: + { + integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, + } + + "@types/lodash@4.17.14": + resolution: + { + integrity: sha512-jsxagdikDiDBeIRaPYtArcT8my4tN1og7MtMRquFT3XNA6axxyHDRUemqDz/taRDdOUn0GnGHRCuff4q48sW9A==, + } + + "@types/mdast@4.0.4": + resolution: + { + integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==, + } + + "@types/mdx@2.0.13": + resolution: + { + integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==, + } + + "@types/ms@0.7.34": + resolution: + { + integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==, + } + + "@types/node@20.12.14": + resolution: + { + integrity: sha512-scnD59RpYD91xngrQQLGkE+6UrHUPzeKZWhhjBSa3HSkwjbQc38+q3RoIVEwxQGRw3M+j5hpNAM+lgV3cVormg==, + } + + "@types/node@20.17.12": + resolution: + { + integrity: sha512-vo/wmBgMIiEA23A/knMfn/cf37VnuF52nZh5ZoW0GWt4e4sxNquibrMRJ7UQsA06+MBx9r/H1jsI9grYjQCQlw==, + } + + "@types/offscreencanvas@2019.7.3": + resolution: + { + integrity: sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A==, + } + + "@types/prop-types@15.7.14": + resolution: + { + integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==, + } + + "@types/react-dom@18.3.5": + resolution: + { + integrity: sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==, + } + peerDependencies: + "@types/react": ^18.0.0 + + "@types/react@18.3.18": + resolution: + { + integrity: sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==, + } + + "@types/resolve@1.20.2": + resolution: + { + integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==, + } + + "@types/resolve@1.20.6": + resolution: + { + integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==, + } + + "@types/stats.js@0.17.3": + resolution: + { + integrity: sha512-pXNfAD3KHOdif9EQXZ9deK82HVNaXP5ZIF5RP2QG6OQFNTaY2YIetfrE9t528vEreGQvEPRDDc8muaoYeK0SxQ==, + } + + "@types/three@0.163.0": + resolution: + { + integrity: sha512-uIdDhsXRpQiBUkflBS/i1l3JX14fW6Ot9csed60nfbZNXHDTRsnV2xnTVwXcgbvTiboAR4IW+t+lTL5f1rqIqA==, + } + + "@types/trusted-types@2.0.7": + resolution: + { + integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==, + } + + "@types/unist@2.0.11": + resolution: + { + integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==, + } + + "@types/unist@3.0.3": + resolution: + { + integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==, + } + + "@types/uuid@9.0.8": + resolution: + { + integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==, + } + + "@types/webxr@0.5.20": + resolution: + { + integrity: sha512-JGpU6qiIJQKUuVSKx1GtQnHJGxRjtfGIhzO2ilq43VZZS//f1h1Sgexbdk+Lq+7569a6EYhOWrUpIruR/1Enmg==, + } + + "@types/ws@8.5.13": + resolution: + { + integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==, + } + + "@typescript-eslint/eslint-plugin@7.18.0": + resolution: + { + integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==, + } + engines: { node: ^18.18.0 || >=20.0.0 } + peerDependencies: + "@typescript-eslint/parser": ^7.0.0 eslint: ^8.56.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/eslint-plugin@8.19.1': - resolution: {integrity: sha512-tJzcVyvvb9h/PB96g30MpxACd9IrunT7GF9wfA9/0TJ1LxGOJx1TdPzSbBBnNED7K9Ka8ybJsnEpiXPktolTLg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + "@typescript-eslint/eslint-plugin@8.19.1": + resolution: + { + integrity: sha512-tJzcVyvvb9h/PB96g30MpxACd9IrunT7GF9wfA9/0TJ1LxGOJx1TdPzSbBBnNED7K9Ka8ybJsnEpiXPktolTLg==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: - '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' + typescript: ">=4.8.4 <5.8.0" - '@typescript-eslint/parser@8.19.1': - resolution: {integrity: sha512-67gbfv8rAwawjYx3fYArwldTQKoYfezNUT4D5ioWetr/xCrxXxvleo3uuiFuKfejipvq+og7mjz3b0G2bVyUCw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + "@typescript-eslint/parser@8.19.1": + resolution: + { + integrity: sha512-67gbfv8rAwawjYx3fYArwldTQKoYfezNUT4D5ioWetr/xCrxXxvleo3uuiFuKfejipvq+og7mjz3b0G2bVyUCw==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' - - '@typescript-eslint/scope-manager@7.18.0': - resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==} - engines: {node: ^18.18.0 || >=20.0.0} - - '@typescript-eslint/scope-manager@8.19.1': - resolution: {integrity: sha512-60L9KIuN/xgmsINzonOcMDSB8p82h95hoBfSBtXuO4jlR1R9L1xSkmVZKgCPVfavDlXihh4ARNjXhh1gGnLC7Q==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/type-utils@7.18.0': - resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==} - engines: {node: ^18.18.0 || >=20.0.0} + typescript: ">=4.8.4 <5.8.0" + + "@typescript-eslint/scope-manager@7.18.0": + resolution: + { + integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==, + } + engines: { node: ^18.18.0 || >=20.0.0 } + + "@typescript-eslint/scope-manager@8.19.1": + resolution: + { + integrity: sha512-60L9KIuN/xgmsINzonOcMDSB8p82h95hoBfSBtXuO4jlR1R9L1xSkmVZKgCPVfavDlXihh4ARNjXhh1gGnLC7Q==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@typescript-eslint/type-utils@7.18.0": + resolution: + { + integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==, + } + engines: { node: ^18.18.0 || >=20.0.0 } peerDependencies: eslint: ^8.56.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/type-utils@8.19.1': - resolution: {integrity: sha512-Rp7k9lhDKBMRJB/nM9Ksp1zs4796wVNyihG9/TU9R6KCJDNkQbc2EOKjrBtLYh3396ZdpXLtr/MkaSEmNMtykw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + "@typescript-eslint/type-utils@8.19.1": + resolution: + { + integrity: sha512-Rp7k9lhDKBMRJB/nM9Ksp1zs4796wVNyihG9/TU9R6KCJDNkQbc2EOKjrBtLYh3396ZdpXLtr/MkaSEmNMtykw==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' - - '@typescript-eslint/types@7.18.0': - resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} - engines: {node: ^18.18.0 || >=20.0.0} - - '@typescript-eslint/types@8.19.1': - resolution: {integrity: sha512-JBVHMLj7B1K1v1051ZaMMgLW4Q/jre5qGK0Ew6UgXz1Rqh+/xPzV1aW581OM00X6iOfyr1be+QyW8LOUf19BbA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/typescript-estree@7.18.0': - resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} - engines: {node: ^18.18.0 || >=20.0.0} - peerDependencies: - typescript: '*' + typescript: ">=4.8.4 <5.8.0" + + "@typescript-eslint/types@7.18.0": + resolution: + { + integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==, + } + engines: { node: ^18.18.0 || >=20.0.0 } + + "@typescript-eslint/types@8.19.1": + resolution: + { + integrity: sha512-JBVHMLj7B1K1v1051ZaMMgLW4Q/jre5qGK0Ew6UgXz1Rqh+/xPzV1aW581OM00X6iOfyr1be+QyW8LOUf19BbA==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@typescript-eslint/typescript-estree@7.18.0": + resolution: + { + integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==, + } + engines: { node: ^18.18.0 || >=20.0.0 } + peerDependencies: + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/typescript-estree@8.19.1': - resolution: {integrity: sha512-jk/TZwSMJlxlNnqhy0Eod1PNEvCkpY6MXOXE/WLlblZ6ibb32i2We4uByoKPv1d0OD2xebDv4hbs3fm11SMw8Q==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + "@typescript-eslint/typescript-estree@8.19.1": + resolution: + { + integrity: sha512-jk/TZwSMJlxlNnqhy0Eod1PNEvCkpY6MXOXE/WLlblZ6ibb32i2We4uByoKPv1d0OD2xebDv4hbs3fm11SMw8Q==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: - typescript: '>=4.8.4 <5.8.0' + typescript: ">=4.8.4 <5.8.0" - '@typescript-eslint/utils@7.18.0': - resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==} - engines: {node: ^18.18.0 || >=20.0.0} + "@typescript-eslint/utils@7.18.0": + resolution: + { + integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==, + } + engines: { node: ^18.18.0 || >=20.0.0 } peerDependencies: eslint: ^8.56.0 - '@typescript-eslint/utils@8.19.1': - resolution: {integrity: sha512-IxG5gLO0Ne+KaUc8iW1A+XuKLd63o4wlbI1Zp692n1xojCl/THvgIKXJXBZixTh5dd5+yTJ/VXH7GJaaw21qXA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + "@typescript-eslint/utils@8.19.1": + resolution: + { + integrity: sha512-IxG5gLO0Ne+KaUc8iW1A+XuKLd63o4wlbI1Zp692n1xojCl/THvgIKXJXBZixTh5dd5+yTJ/VXH7GJaaw21qXA==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' - - '@typescript-eslint/visitor-keys@7.18.0': - resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==} - engines: {node: ^18.18.0 || >=20.0.0} - - '@typescript-eslint/visitor-keys@8.19.1': - resolution: {integrity: sha512-fzmjU8CHK853V/avYZAvuVut3ZTfwN5YtMaoi+X9Y9MA9keaWNHC3zEQ9zvyX/7Hj+5JkNyK1l7TOR2hevHB6Q==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript/vfs@1.6.0': - resolution: {integrity: sha512-hvJUjNVeBMp77qPINuUvYXj4FyWeeMMKZkxEATEU3hqBAQ7qdTBCUFT7Sp0Zu0faeEtFf+ldXxMEDr/bk73ISg==} - peerDependencies: - typescript: '*' - - '@ungap/structured-clone@1.2.1': - resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} - - '@use-gesture/core@10.3.1': - resolution: {integrity: sha512-WcINiDt8WjqBdUXye25anHiNxPc0VOrlT8F6LLkU6cycrOGUDyY/yyFmsg3k8i5OLvv25llc0QC45GhR/C8llw==} - - '@use-gesture/react@10.3.1': - resolution: {integrity: sha512-Yy19y6O2GJq8f7CHf7L0nxL8bf4PZCPaVOCgJrusOeFHY1LvHgYXnmnXg6N5iwAnbgbZCDjo60SiM6IPJi9C5g==} - peerDependencies: - react: '>= 16.8.0' - - '@vanilla-extract/babel-plugin-debug-ids@1.2.0': - resolution: {integrity: sha512-z5nx2QBnOhvmlmBKeRX5sPVLz437wV30u+GJL+Hzj1rGiJYVNvgIIlzUpRNjVQ0MgAgiQIqIUbqPnmMc6HmDlQ==} - - '@vanilla-extract/css@1.17.0': - resolution: {integrity: sha512-W6FqVFDD+C71ZlKsuj0MxOXSvHb1tvQ9h/+79aYfi097wLsALrnnBzd0by8C///iurrpQ3S+SH74lXd7Lr9MvA==} - - '@vanilla-extract/dynamic@2.1.2': - resolution: {integrity: sha512-9BGMciD8rO1hdSPIAh1ntsG4LPD3IYKhywR7VOmmz9OO4Lx1hlwkSg3E6X07ujFx7YuBfx0GDQnApG9ESHvB2A==} - - '@vanilla-extract/integration@6.5.0': - resolution: {integrity: sha512-E2YcfO8vA+vs+ua+gpvy1HRqvgWbI+MTlUpxA8FvatOvybuNcWAY0CKwQ/Gpj7rswYKtC6C7+xw33emM6/ImdQ==} - - '@vanilla-extract/private@1.0.6': - resolution: {integrity: sha512-ytsG/JLweEjw7DBuZ/0JCN4WAQgM9erfSTdS1NQY778hFQSZ6cfCDEZZ0sgVm4k54uNz6ImKB33AYvSR//fjxw==} - - '@vanilla-extract/vite-plugin@3.9.5': - resolution: {integrity: sha512-CWI/CtrVW6i3HKccI6T7uGQkTJ8bd8Xl2UMBg3Pkr7dwWMmavXTeucV0I9KSbmXaYXSbEj+Q8c9y0xAZwtmTig==} + typescript: ">=4.8.4 <5.8.0" + + "@typescript-eslint/visitor-keys@7.18.0": + resolution: + { + integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==, + } + engines: { node: ^18.18.0 || >=20.0.0 } + + "@typescript-eslint/visitor-keys@8.19.1": + resolution: + { + integrity: sha512-fzmjU8CHK853V/avYZAvuVut3ZTfwN5YtMaoi+X9Y9MA9keaWNHC3zEQ9zvyX/7Hj+5JkNyK1l7TOR2hevHB6Q==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@typescript/vfs@1.6.0": + resolution: + { + integrity: sha512-hvJUjNVeBMp77qPINuUvYXj4FyWeeMMKZkxEATEU3hqBAQ7qdTBCUFT7Sp0Zu0faeEtFf+ldXxMEDr/bk73ISg==, + } + peerDependencies: + typescript: "*" + + "@ungap/structured-clone@1.2.1": + resolution: + { + integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==, + } + + "@use-gesture/core@10.3.1": + resolution: + { + integrity: sha512-WcINiDt8WjqBdUXye25anHiNxPc0VOrlT8F6LLkU6cycrOGUDyY/yyFmsg3k8i5OLvv25llc0QC45GhR/C8llw==, + } + + "@use-gesture/react@10.3.1": + resolution: + { + integrity: sha512-Yy19y6O2GJq8f7CHf7L0nxL8bf4PZCPaVOCgJrusOeFHY1LvHgYXnmnXg6N5iwAnbgbZCDjo60SiM6IPJi9C5g==, + } + peerDependencies: + react: ">= 16.8.0" + + "@vanilla-extract/babel-plugin-debug-ids@1.2.0": + resolution: + { + integrity: sha512-z5nx2QBnOhvmlmBKeRX5sPVLz437wV30u+GJL+Hzj1rGiJYVNvgIIlzUpRNjVQ0MgAgiQIqIUbqPnmMc6HmDlQ==, + } + + "@vanilla-extract/css@1.17.0": + resolution: + { + integrity: sha512-W6FqVFDD+C71ZlKsuj0MxOXSvHb1tvQ9h/+79aYfi097wLsALrnnBzd0by8C///iurrpQ3S+SH74lXd7Lr9MvA==, + } + + "@vanilla-extract/dynamic@2.1.2": + resolution: + { + integrity: sha512-9BGMciD8rO1hdSPIAh1ntsG4LPD3IYKhywR7VOmmz9OO4Lx1hlwkSg3E6X07ujFx7YuBfx0GDQnApG9ESHvB2A==, + } + + "@vanilla-extract/integration@6.5.0": + resolution: + { + integrity: sha512-E2YcfO8vA+vs+ua+gpvy1HRqvgWbI+MTlUpxA8FvatOvybuNcWAY0CKwQ/Gpj7rswYKtC6C7+xw33emM6/ImdQ==, + } + + "@vanilla-extract/private@1.0.6": + resolution: + { + integrity: sha512-ytsG/JLweEjw7DBuZ/0JCN4WAQgM9erfSTdS1NQY778hFQSZ6cfCDEZZ0sgVm4k54uNz6ImKB33AYvSR//fjxw==, + } + + "@vanilla-extract/vite-plugin@3.9.5": + resolution: + { + integrity: sha512-CWI/CtrVW6i3HKccI6T7uGQkTJ8bd8Xl2UMBg3Pkr7dwWMmavXTeucV0I9KSbmXaYXSbEj+Q8c9y0xAZwtmTig==, + } peerDependencies: vite: ^2.2.3 || ^3.0.0 || ^4.0.3 || ^5.0.0 - '@vercel/analytics@1.4.1': - resolution: {integrity: sha512-ekpL4ReX2TH3LnrRZTUKjHHNpNy9S1I7QmS+g/RQXoSUQ8ienzosuX7T9djZ/s8zPhBx1mpHP/Rw5875N+zQIQ==} + "@vercel/analytics@1.4.1": + resolution: + { + integrity: sha512-ekpL4ReX2TH3LnrRZTUKjHHNpNy9S1I7QmS+g/RQXoSUQ8ienzosuX7T9djZ/s8zPhBx1mpHP/Rw5875N+zQIQ==, + } peerDependencies: - '@remix-run/react': ^2 - '@sveltejs/kit': ^1 || ^2 - next: '>= 13' + "@remix-run/react": ^2 + "@sveltejs/kit": ^1 || ^2 + next: ">= 13" react: ^18 || ^19 || ^19.0.0-rc - svelte: '>= 4' + svelte: ">= 4" vue: ^3 vue-router: ^4 peerDependenciesMeta: - '@remix-run/react': + "@remix-run/react": optional: true - '@sveltejs/kit': + "@sveltejs/kit": optional: true next: optional: true @@ -4109,49 +6045,79 @@ packages: vue-router: optional: true - '@vercel/build-utils@8.8.0': - resolution: {integrity: sha512-4jkeJ/Xr0epojgfiyQufB8vC0ubE9SCfA9I2BGcOIKcf65C25juSvuYwaLixnjZXHUTO4Y9W7fdgiLUk55MgbA==} - - '@vercel/nft@0.27.10': - resolution: {integrity: sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==} - engines: {node: '>=16'} + "@vercel/build-utils@8.8.0": + resolution: + { + integrity: sha512-4jkeJ/Xr0epojgfiyQufB8vC0ubE9SCfA9I2BGcOIKcf65C25juSvuYwaLixnjZXHUTO4Y9W7fdgiLUk55MgbA==, + } + + "@vercel/nft@0.27.10": + resolution: + { + integrity: sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==, + } + engines: { node: ">=16" } hasBin: true - '@vercel/routing-utils@3.1.0': - resolution: {integrity: sha512-Ci5xTjVTJY/JLZXpCXpLehMft97i9fH34nu9PGav6DtwkVUF6TOPX86U0W0niQjMZ5n6/ZP0BwcJK2LOozKaGw==} + "@vercel/routing-utils@3.1.0": + resolution: + { + integrity: sha512-Ci5xTjVTJY/JLZXpCXpLehMft97i9fH34nu9PGav6DtwkVUF6TOPX86U0W0niQjMZ5n6/ZP0BwcJK2LOozKaGw==, + } - '@vitejs/plugin-react@4.3.1': - resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==} - engines: {node: ^14.18.0 || >=16.0.0} + "@vitejs/plugin-react@4.3.1": + resolution: + { + integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==, + } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: vite: ^4.2.0 || ^5.0.0 - '@vitejs/plugin-react@4.3.4': - resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==} - engines: {node: ^14.18.0 || >=16.0.0} + "@vitejs/plugin-react@4.3.4": + resolution: + { + integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==, + } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: vite: ^4.2.0 || ^5.0.0 || ^6.0.0 - '@vitest/coverage-v8@2.1.8': - resolution: {integrity: sha512-2Y7BPlKH18mAZYAW1tYByudlCYrQyl5RGvnnDYJKW5tCiO5qg3KSAy3XAxcxKz900a0ZXxWtKrMuZLe3lKBpJw==} + "@vitest/coverage-v8@2.1.8": + resolution: + { + integrity: sha512-2Y7BPlKH18mAZYAW1tYByudlCYrQyl5RGvnnDYJKW5tCiO5qg3KSAy3XAxcxKz900a0ZXxWtKrMuZLe3lKBpJw==, + } peerDependencies: - '@vitest/browser': 2.1.8 + "@vitest/browser": 2.1.8 vitest: 2.1.8 peerDependenciesMeta: - '@vitest/browser': + "@vitest/browser": optional: true - '@vitest/expect@1.6.0': - resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==} - - '@vitest/expect@2.0.5': - resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==} - - '@vitest/expect@2.1.8': - resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==} - - '@vitest/mocker@2.1.8': - resolution: {integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==} + "@vitest/expect@1.6.0": + resolution: + { + integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==, + } + + "@vitest/expect@2.0.5": + resolution: + { + integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==, + } + + "@vitest/expect@2.1.8": + resolution: + { + integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==, + } + + "@vitest/mocker@2.1.8": + resolution: + { + integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==, + } peerDependencies: msw: ^2.4.9 vite: ^5.0.0 @@ -4161,79 +6127,142 @@ packages: vite: optional: true - '@vitest/pretty-format@2.0.5': - resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==} - - '@vitest/pretty-format@2.1.8': - resolution: {integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==} - - '@vitest/runner@1.6.0': - resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==} - - '@vitest/runner@2.1.8': - resolution: {integrity: sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==} - - '@vitest/snapshot@1.6.0': - resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==} - - '@vitest/snapshot@2.1.8': - resolution: {integrity: sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==} - - '@vitest/spy@1.6.0': - resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==} - - '@vitest/spy@2.0.5': - resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==} - - '@vitest/spy@2.1.8': - resolution: {integrity: sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==} - - '@vitest/ui@2.1.8': - resolution: {integrity: sha512-5zPJ1fs0ixSVSs5+5V2XJjXLmNzjugHRyV11RqxYVR+oMcogZ9qTuSfKW+OcTV0JeFNznI83BNylzH6SSNJ1+w==} + "@vitest/pretty-format@2.0.5": + resolution: + { + integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==, + } + + "@vitest/pretty-format@2.1.8": + resolution: + { + integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==, + } + + "@vitest/runner@1.6.0": + resolution: + { + integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==, + } + + "@vitest/runner@2.1.8": + resolution: + { + integrity: sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==, + } + + "@vitest/snapshot@1.6.0": + resolution: + { + integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==, + } + + "@vitest/snapshot@2.1.8": + resolution: + { + integrity: sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==, + } + + "@vitest/spy@1.6.0": + resolution: + { + integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==, + } + + "@vitest/spy@2.0.5": + resolution: + { + integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==, + } + + "@vitest/spy@2.1.8": + resolution: + { + integrity: sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==, + } + + "@vitest/ui@2.1.8": + resolution: + { + integrity: sha512-5zPJ1fs0ixSVSs5+5V2XJjXLmNzjugHRyV11RqxYVR+oMcogZ9qTuSfKW+OcTV0JeFNznI83BNylzH6SSNJ1+w==, + } peerDependencies: vitest: 2.1.8 - '@vitest/utils@1.6.0': - resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==} - - '@vitest/utils@2.0.5': - resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==} - - '@vitest/utils@2.1.8': - resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==} - - '@whatwg-node/disposablestack@0.0.5': - resolution: {integrity: sha512-9lXugdknoIequO4OYvIjhygvfSEgnO8oASLqLelnDhkRjgBZhc39shC3QSlZuyDO9bgYSIVa2cHAiN+St3ty4w==} - engines: {node: '>=18.0.0'} - - '@whatwg-node/fetch@0.10.1': - resolution: {integrity: sha512-gmPOLrsjSZWEZlr9Oe5+wWFBq3CG6fN13rGlM91Jsj/vZ95G9CCvrORGBAxMXy0AJGiC83aYiHXn3JzTzXQmbA==} - engines: {node: '>=18.0.0'} - - '@whatwg-node/fetch@0.9.23': - resolution: {integrity: sha512-7xlqWel9JsmxahJnYVUj/LLxWcnA93DR4c9xlw3U814jWTiYalryiH1qToik1hOxweKKRLi4haXHM5ycRksPBA==} - engines: {node: '>=18.0.0'} - - '@whatwg-node/node-fetch@0.6.0': - resolution: {integrity: sha512-tcZAhrpx6oVlkEsRngeTEEE7I5/QdLjeEz4IlekabGaESP7+Dkm/6a9KcF1KdCBB7mO9PXtBkwCuTCt8+UPg8Q==} - engines: {node: '>=18.0.0'} - - '@whatwg-node/node-fetch@0.7.5': - resolution: {integrity: sha512-t7kGrt2fdfNvzy1LCAE9/OnIyMtizgFhgJmk7iLJwQsLmR7S86F8Q4aDRPbCfo7pISJP6Fx/tPdfFNjHS23WTA==} - engines: {node: '>=18.0.0'} + "@vitest/utils@1.6.0": + resolution: + { + integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==, + } + + "@vitest/utils@2.0.5": + resolution: + { + integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==, + } + + "@vitest/utils@2.1.8": + resolution: + { + integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==, + } + + "@whatwg-node/disposablestack@0.0.5": + resolution: + { + integrity: sha512-9lXugdknoIequO4OYvIjhygvfSEgnO8oASLqLelnDhkRjgBZhc39shC3QSlZuyDO9bgYSIVa2cHAiN+St3ty4w==, + } + engines: { node: ">=18.0.0" } + + "@whatwg-node/fetch@0.10.1": + resolution: + { + integrity: sha512-gmPOLrsjSZWEZlr9Oe5+wWFBq3CG6fN13rGlM91Jsj/vZ95G9CCvrORGBAxMXy0AJGiC83aYiHXn3JzTzXQmbA==, + } + engines: { node: ">=18.0.0" } + + "@whatwg-node/fetch@0.9.23": + resolution: + { + integrity: sha512-7xlqWel9JsmxahJnYVUj/LLxWcnA93DR4c9xlw3U814jWTiYalryiH1qToik1hOxweKKRLi4haXHM5ycRksPBA==, + } + engines: { node: ">=18.0.0" } + + "@whatwg-node/node-fetch@0.6.0": + resolution: + { + integrity: sha512-tcZAhrpx6oVlkEsRngeTEEE7I5/QdLjeEz4IlekabGaESP7+Dkm/6a9KcF1KdCBB7mO9PXtBkwCuTCt8+UPg8Q==, + } + engines: { node: ">=18.0.0" } + + "@whatwg-node/node-fetch@0.7.5": + resolution: + { + integrity: sha512-t7kGrt2fdfNvzy1LCAE9/OnIyMtizgFhgJmk7iLJwQsLmR7S86F8Q4aDRPbCfo7pISJP6Fx/tPdfFNjHS23WTA==, + } + engines: { node: ">=18.0.0" } abbrev@2.0.0: - resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } abi-wan-kanabi@2.2.4: - resolution: {integrity: sha512-0aA81FScmJCPX+8UvkXLki3X1+yPQuWxEkqXBVKltgPAK79J+NB+Lp5DouMXa7L6f+zcRlIA/6XO7BN/q9fnvg==} + resolution: + { + integrity: sha512-0aA81FScmJCPX+8UvkXLki3X1+yPQuWxEkqXBVKltgPAK79J+NB+Lp5DouMXa7L6f+zcRlIA/6XO7BN/q9fnvg==, + } hasBin: true abitype@1.0.0: - resolution: {integrity: sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ==} + resolution: + { + integrity: sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ==, + } peerDependencies: - typescript: '>=5.0.4' + typescript: ">=5.0.4" zod: ^3 >=3.22.0 peerDependenciesMeta: typescript: @@ -4242,9 +6271,12 @@ packages: optional: true abitype@1.0.7: - resolution: {integrity: sha512-ZfYYSktDQUwc2eduYu8C4wOs+RDPmnRYMh7zNfzeMtGGgb0U+6tLGjixUic6mXf5xKKCcgT5Qp6cv39tOARVFw==} + resolution: + { + integrity: sha512-ZfYYSktDQUwc2eduYu8C4wOs+RDPmnRYMh7zNfzeMtGGgb0U+6tLGjixUic6mXf5xKKCcgT5Qp6cv39tOARVFw==, + } peerDependencies: - typescript: '>=5.0.4' + typescript: ">=5.0.4" zod: ^3 >=3.22.0 peerDependenciesMeta: typescript: @@ -4253,667 +6285,1186 @@ packages: optional: true acorn-import-attributes@1.9.5: - resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} + resolution: + { + integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==, + } peerDependencies: acorn: ^8 acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + resolution: + { + integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, + } peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 acorn-walk@8.3.4: - resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==, + } + engines: { node: ">=0.4.0" } acorn@8.14.0: - resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==, + } + engines: { node: ">=0.4.0" } hasBin: true agent-base@7.1.3: - resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} - engines: {node: '>= 14'} + resolution: + { + integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==, + } + engines: { node: ">= 14" } aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, + } + engines: { node: ">=8" } ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + resolution: + { + integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, + } ajv@8.17.1: - resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + resolution: + { + integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, + } ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, + } + engines: { node: ">=8" } ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, + } + engines: { node: ">=8" } ansi-regex@6.1.0: - resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==, + } + engines: { node: ">=12" } ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, + } + engines: { node: ">=8" } ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, + } + engines: { node: ">=10" } ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, + } + engines: { node: ">=12" } ansicolors@0.3.2: - resolution: {integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==} + resolution: + { + integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==, + } any-promise@1.3.0: - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + resolution: + { + integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==, + } anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, + } + engines: { node: ">= 8" } arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + resolution: + { + integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==, + } argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, + } aria-hidden@1.2.4: - resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==, + } + engines: { node: ">=10" } aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + resolution: + { + integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==, + } aria-query@5.3.2: - resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==, + } + engines: { node: ">= 0.4" } array-buffer-byte-length@1.0.2: - resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==, + } + engines: { node: ">= 0.4" } array-includes@3.1.8: - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==, + } + engines: { node: ">= 0.4" } array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, + } + engines: { node: ">=8" } array.prototype.findlastindex@1.2.5: - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==, + } + engines: { node: ">= 0.4" } array.prototype.flat@1.3.3: - resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==, + } + engines: { node: ">= 0.4" } array.prototype.flatmap@1.3.3: - resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==, + } + engines: { node: ">= 0.4" } arraybuffer.prototype.slice@1.0.4: - resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==, + } + engines: { node: ">= 0.4" } asap@2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + resolution: + { + integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==, + } assertion-error@1.1.0: - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + resolution: + { + integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, + } assertion-error@2.0.1: - resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==, + } + engines: { node: ">=12" } assign-symbols@1.0.0: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==, + } + engines: { node: ">=0.10.0" } ast-types@0.16.1: - resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==, + } + engines: { node: ">=4" } astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==, + } + engines: { node: ">=8" } astring@1.9.0: - resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==} + resolution: + { + integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==, + } hasBin: true async-sema@3.1.1: - resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} + resolution: + { + integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==, + } async@3.2.6: - resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + resolution: + { + integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==, + } asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + resolution: + { + integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, + } at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==, + } + engines: { node: ">= 4.0.0" } attr-accept@2.2.5: - resolution: {integrity: sha512-0bDNnY/u6pPwHDMoF0FieU354oBi0a8rD9FcsLwzcGWbc8KS8KPIi7y+s13OlVY+gMWc/9xEMUgNE6Qm8ZllYQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-0bDNnY/u6pPwHDMoF0FieU354oBi0a8rD9FcsLwzcGWbc8KS8KPIi7y+s13OlVY+gMWc/9xEMUgNE6Qm8ZllYQ==, + } + engines: { node: ">=4" } auto-bind@4.0.0: - resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==, + } + engines: { node: ">=8" } autoprefixer@10.4.20: - resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==, + } + engines: { node: ^10 || ^12 || >=14 } hasBin: true peerDependencies: postcss: ^8.1.0 available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==, + } + engines: { node: ">= 0.4" } axios@1.7.9: - resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==} + resolution: + { + integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==, + } babel-dead-code-elimination@1.0.8: - resolution: {integrity: sha512-og6HQERk0Cmm+nTT4Od2wbPtgABXFMPaHACjbKLulZIFMkYyXZLkUGuAxdgpMJBrxyt/XFpSz++lNzjbcMnPkQ==} + resolution: + { + integrity: sha512-og6HQERk0Cmm+nTT4Od2wbPtgABXFMPaHACjbKLulZIFMkYyXZLkUGuAxdgpMJBrxyt/XFpSz++lNzjbcMnPkQ==, + } babel-plugin-polyfill-corejs2@0.4.12: - resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==} + resolution: + { + integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==, + } peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 babel-plugin-polyfill-corejs3@0.10.6: - resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==} + resolution: + { + integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==, + } peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 babel-plugin-polyfill-regenerator@0.6.3: - resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==} + resolution: + { + integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==, + } peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: - resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} + resolution: + { + integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==, + } babel-preset-fbjs@3.4.0: - resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} + resolution: + { + integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==, + } peerDependencies: - '@babel/core': ^7.0.0 + "@babel/core": ^7.0.0 bail@2.0.2: - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + resolution: + { + integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==, + } balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + } base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + resolution: + { + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, + } base64url@3.0.1: - resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==, + } + engines: { node: ">=6.0.0" } bcp-47-match@2.0.3: - resolution: {integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==} + resolution: + { + integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==, + } before-after-hook@2.2.3: - resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + resolution: + { + integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==, + } better-opn@3.0.2: - resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==, + } + engines: { node: ">=12.0.0" } binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==, + } + engines: { node: ">=8" } bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + resolution: + { + integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, + } bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + resolution: + { + integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, + } bl@5.1.0: - resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==} + resolution: + { + integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==, + } boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + resolution: + { + integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, + } brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + resolution: + { + integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, + } brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + resolution: + { + integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, + } braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==, + } + engines: { node: ">=8" } browser-assert@1.2.1: - resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} + resolution: + { + integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==, + } browserslist@4.24.3: - resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + resolution: + { + integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==, + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + resolution: + { + integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, + } buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + resolution: + { + integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, + } buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + resolution: + { + integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, + } buffer@6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + resolution: + { + integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==, + } bun-types@1.1.42: - resolution: {integrity: sha512-beMbnFqWbbBQHll/bn3phSwmoOQmnX2nt8NI9iOQKFbgR5Z6rlH3YuaMdlid8vp5XGct3/W4QVQBmhoOEoe4nw==} + resolution: + { + integrity: sha512-beMbnFqWbbBQHll/bn3phSwmoOQmnX2nt8NI9iOQKFbgR5Z6rlH3YuaMdlid8vp5XGct3/W4QVQBmhoOEoe4nw==, + } bundle-require@5.1.0: - resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } peerDependencies: - esbuild: '>=0.18' + esbuild: ">=0.18" busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.0'} + resolution: + { + integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, + } + engines: { node: ">=10.16.0" } bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, + } + engines: { node: ">= 0.8" } cac@6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==, + } + engines: { node: ">=8" } call-bind-apply-helpers@1.0.1: - resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==, + } + engines: { node: ">= 0.4" } call-bind@1.0.8: - resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==, + } + engines: { node: ">= 0.4" } call-bound@1.0.3: - resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==, + } + engines: { node: ">= 0.4" } callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, + } + engines: { node: ">=6" } camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + resolution: + { + integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==, + } camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==, + } + engines: { node: ">= 6" } camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, + } + engines: { node: ">=6" } camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==, + } + engines: { node: ">=10" } caniuse-lite@1.0.30001690: - resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==} + resolution: + { + integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==, + } capital-case@1.0.4: - resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} + resolution: + { + integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==, + } cardinal@2.1.1: - resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==} + resolution: + { + integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==, + } hasBin: true cbor-extract@2.2.0: - resolution: {integrity: sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA==} + resolution: + { + integrity: sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA==, + } hasBin: true cbor-x@1.6.0: - resolution: {integrity: sha512-0kareyRwHSkL6ws5VXHEf8uY1liitysCVJjlmhaLG+IXLqhSaOO+t63coaso7yjwEzWZzLy8fJo06gZDVQM9Qg==} + resolution: + { + integrity: sha512-0kareyRwHSkL6ws5VXHEf8uY1liitysCVJjlmhaLG+IXLqhSaOO+t63coaso7yjwEzWZzLy8fJo06gZDVQM9Qg==, + } ccount@2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + resolution: + { + integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, + } chai@4.5.0: - resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==, + } + engines: { node: ">=4" } chai@5.1.2: - resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==, + } + engines: { node: ">=12" } chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==, + } + engines: { node: ">=8" } chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, + } + engines: { node: ">=10" } chalk@5.4.1: - resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + resolution: + { + integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==, + } + engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } change-case-all@1.0.14: - resolution: {integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==} + resolution: + { + integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==, + } change-case-all@1.0.15: - resolution: {integrity: sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==} + resolution: + { + integrity: sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==, + } change-case@4.1.2: - resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} + resolution: + { + integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==, + } character-entities-html4@2.1.0: - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + resolution: + { + integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==, + } character-entities-legacy@3.0.0: - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + resolution: + { + integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==, + } character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + resolution: + { + integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==, + } character-reference-invalid@2.0.1: - resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + resolution: + { + integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==, + } chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + resolution: + { + integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, + } check-error@1.0.3: - resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} + resolution: + { + integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==, + } check-error@2.1.1: - resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} - engines: {node: '>= 16'} + resolution: + { + integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==, + } + engines: { node: ">= 16" } chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} + resolution: + { + integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==, + } + engines: { node: ">= 8.10.0" } chokidar@4.0.3: - resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} - engines: {node: '>= 14.16.0'} + resolution: + { + integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==, + } + engines: { node: ">= 14.16.0" } chownr@3.0.0: - resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==, + } + engines: { node: ">=18" } chroma-js@2.6.0: - resolution: {integrity: sha512-BLHvCB9s8Z1EV4ethr6xnkl/P2YRFOGqfgvuMG/MyCbZPrTA+NeiByY6XvgF0zP4/2deU2CXnWyMa3zu1LqQ3A==} + resolution: + { + integrity: sha512-BLHvCB9s8Z1EV4ethr6xnkl/P2YRFOGqfgvuMG/MyCbZPrTA+NeiByY6XvgF0zP4/2deU2CXnWyMa3zu1LqQ3A==, + } chromatic@11.22.0: - resolution: {integrity: sha512-u1kAPR9lj9aFzsCp0iWPXBbsKgcxFU7iJO6mFbgNHGVg+YPBqiJMuvgB8EQHdNbHjk5amFnGnIz/Ww8fK3t9Hw==} + resolution: + { + integrity: sha512-u1kAPR9lj9aFzsCp0iWPXBbsKgcxFU7iJO6mFbgNHGVg+YPBqiJMuvgB8EQHdNbHjk5amFnGnIz/Ww8fK3t9Hw==, + } hasBin: true peerDependencies: - '@chromatic-com/cypress': ^0.*.* || ^1.0.0 - '@chromatic-com/playwright': ^0.*.* || ^1.0.0 + "@chromatic-com/cypress": ^0.*.* || ^1.0.0 + "@chromatic-com/playwright": ^0.*.* || ^1.0.0 peerDependenciesMeta: - '@chromatic-com/cypress': + "@chromatic-com/cypress": optional: true - '@chromatic-com/playwright': + "@chromatic-com/playwright": optional: true class-variance-authority@0.7.1: - resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==} + resolution: + { + integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==, + } clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, + } + engines: { node: ">=6" } cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, + } + engines: { node: ">=8" } cli-cursor@4.0.0: - resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==, + } + engines: { node: ">=6" } cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==, + } + engines: { node: ">=8" } cli-width@3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==, + } + engines: { node: ">= 10" } cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + resolution: + { + integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, + } cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, + } + engines: { node: ">=12" } clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, + } + engines: { node: ">=0.8" } clsx@1.2.1: - resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==, + } + engines: { node: ">=6" } clsx@2.1.1: - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==, + } + engines: { node: ">=6" } cmdk@1.0.0: - resolution: {integrity: sha512-gDzVf0a09TvoJ5jnuPvygTB77+XdOSwEmJ88L6XPFPlv7T3RxbP9jgenfylrAMD0+Le1aO0nVjQUzl2g+vjz5Q==} + resolution: + { + integrity: sha512-gDzVf0a09TvoJ5jnuPvygTB77+XdOSwEmJ88L6XPFPlv7T3RxbP9jgenfylrAMD0+Le1aO0nVjQUzl2g+vjz5Q==, + } peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 collapse-white-space@2.1.0: - resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} + resolution: + { + integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==, + } color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + resolution: + { + integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, + } + engines: { node: ">=7.0.0" } color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + resolution: + { + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, + } colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + resolution: + { + integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==, + } colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + resolution: + { + integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, + } colors@1.4.0: - resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} - engines: {node: '>=0.1.90'} + resolution: + { + integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==, + } + engines: { node: ">=0.1.90" } combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, + } + engines: { node: ">= 0.8" } comma-separated-tokens@2.0.3: - resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + resolution: + { + integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==, + } commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + resolution: + { + integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, + } commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==, + } + engines: { node: ">= 6" } commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==, + } + engines: { node: ">= 10" } common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==, + } + engines: { node: ">=4.0.0" } complex.js@2.4.2: - resolution: {integrity: sha512-qtx7HRhPGSCBtGiST4/WGHuW+zeaND/6Ld+db6PbrulIB1i2Ev/2UPiqcmpQNPSyfBKraC0EOvOKCB5dGZKt3g==} + resolution: + { + integrity: sha512-qtx7HRhPGSCBtGiST4/WGHuW+zeaND/6Ld+db6PbrulIB1i2Ev/2UPiqcmpQNPSyfBKraC0EOvOKCB5dGZKt3g==, + } compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==, + } + engines: { node: ">= 0.6" } compression@1.7.5: - resolution: {integrity: sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==, + } + engines: { node: ">= 0.8.0" } concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + resolution: + { + integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, + } confbox@0.1.8: - resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} + resolution: + { + integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==, + } consola@3.3.3: - resolution: {integrity: sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==} - engines: {node: ^14.18.0 || >=16.10.0} + resolution: + { + integrity: sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==, + } + engines: { node: ^14.18.0 || >=16.10.0 } constant-case@3.0.4: - resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} + resolution: + { + integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==, + } convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + resolution: + { + integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, + } core-js-compat@3.39.0: - resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==} + resolution: + { + integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==, + } cosmiconfig@8.3.6: - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==, + } + engines: { node: ">=14" } peerDependencies: - typescript: '>=4.9.5' + typescript: ">=4.9.5" peerDependenciesMeta: typescript: optional: true create-vocs@1.0.0-alpha.5: - resolution: {integrity: sha512-/Nr9taHX1SxL5t72DLFPYujqD8d5PDk0T8bJ9Fb/m7ck1lP20PBxHzF5IYnHI0BeTpIuGk/MQoLfT6JKpY6xnw==} + resolution: + { + integrity: sha512-/Nr9taHX1SxL5t72DLFPYujqD8d5PDk0T8bJ9Fb/m7ck1lP20PBxHzF5IYnHI0BeTpIuGk/MQoLfT6JKpY6xnw==, + } hasBin: true cross-fetch@3.2.0: - resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==} + resolution: + { + integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==, + } cross-inspect@1.0.1: - resolution: {integrity: sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==} - engines: {node: '>=16.0.0'} + resolution: + { + integrity: sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==, + } + engines: { node: ">=16.0.0" } cross-spawn@7.0.6: - resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==, + } + engines: { node: ">= 8" } crypto-random-string@2.0.0: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==, + } + engines: { node: ">=8" } css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + resolution: + { + integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==, + } css-selector-parser@3.0.5: - resolution: {integrity: sha512-3itoDFbKUNx1eKmVpYMFyqKX04Ww9osZ+dLgrk6GEv6KMVeXUhUnp4I5X+evw+u3ZxVU6RFXSSRxlTeMh8bA+g==} + resolution: + { + integrity: sha512-3itoDFbKUNx1eKmVpYMFyqKX04Ww9osZ+dLgrk6GEv6KMVeXUhUnp4I5X+evw+u3ZxVU6RFXSSRxlTeMh8bA+g==, + } css-tree@2.2.1: - resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + resolution: + { + integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==, + } + engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: ">=7.0.0" } css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + resolution: + { + integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==, + } + engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 } css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==, + } + engines: { node: ">= 6" } css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + resolution: + { + integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==, + } cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==, + } + engines: { node: ">=4" } hasBin: true csso@5.0.5: - resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + resolution: + { + integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==, + } + engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: ">=7.0.0" } csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + resolution: + { + integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, + } data-view-buffer@1.0.2: - resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==, + } + engines: { node: ">= 0.4" } data-view-byte-length@1.0.2: - resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==, + } + engines: { node: ">= 0.4" } data-view-byte-offset@1.0.1: - resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==, + } + engines: { node: ">= 0.4" } dataloader@2.2.3: - resolution: {integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==} + resolution: + { + integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==, + } debounce@1.2.1: - resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + resolution: + { + integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==, + } debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + resolution: + { + integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, + } peerDependencies: - supports-color: '*' + supports-color: "*" peerDependenciesMeta: supports-color: optional: true debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, + } peerDependencies: - supports-color: '*' + supports-color: "*" peerDependenciesMeta: supports-color: optional: true debug@4.4.0: - resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==, + } + engines: { node: ">=6.0" } peerDependencies: - supports-color: '*' + supports-color: "*" peerDependenciesMeta: supports-color: optional: true decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, + } + engines: { node: ">=0.10.0" } decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + resolution: + { + integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==, + } decode-named-character-reference@1.0.2: - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + resolution: + { + integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==, + } decode-uri-component@0.2.2: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==, + } + engines: { node: ">=0.10" } dedent@1.5.3: - resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} + resolution: + { + integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==, + } peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: @@ -4921,308 +7472,545 @@ packages: optional: true deep-eql@4.1.4: - resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==, + } + engines: { node: ">=6" } deep-eql@5.0.2: - resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==, + } + engines: { node: ">=6" } deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + resolution: + { + integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, + } deep-object-diff@1.1.9: - resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} + resolution: + { + integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==, + } deepmerge-ts@7.1.3: - resolution: {integrity: sha512-qCSH6I0INPxd9Y1VtAiLpnYvz5O//6rCfJXKk0z66Up9/VOSr+1yS8XSKA5IWRxjocFGlzPyaZYe+jxq7OOLtQ==} - engines: {node: '>=16.0.0'} + resolution: + { + integrity: sha512-qCSH6I0INPxd9Y1VtAiLpnYvz5O//6rCfJXKk0z66Up9/VOSr+1yS8XSKA5IWRxjocFGlzPyaZYe+jxq7OOLtQ==, + } + engines: { node: ">=16.0.0" } deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, + } + engines: { node: ">=0.10.0" } defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + resolution: + { + integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, + } define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, + } + engines: { node: ">= 0.4" } define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==, + } + engines: { node: ">=8" } define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, + } + engines: { node: ">= 0.4" } delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, + } + engines: { node: ">=0.4.0" } depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, + } + engines: { node: ">= 0.8" } dependency-graph@0.11.0: - resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} - engines: {node: '>= 0.6.0'} + resolution: + { + integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==, + } + engines: { node: ">= 0.6.0" } deprecation@2.3.1: - resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} + resolution: + { + integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==, + } dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, + } + engines: { node: ">=6" } destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + resolution: + { + integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==, + } + engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, + } + engines: { node: ">=8" } detect-libc@1.0.3: - resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==, + } + engines: { node: ">=0.10" } hasBin: true detect-libc@2.0.3: - resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==, + } + engines: { node: ">=8" } detect-node-es@1.1.0: - resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} + resolution: + { + integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==, + } detect-package-manager@3.0.2: - resolution: {integrity: sha512-8JFjJHutStYrfWwzfretQoyNGoZVW1Fsrp4JO9spa7h/fBfwgTMEIy4/LBzRDGsxwVPHU0q+T9YvwLDJoOApLQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-8JFjJHutStYrfWwzfretQoyNGoZVW1Fsrp4JO9spa7h/fBfwgTMEIy4/LBzRDGsxwVPHU0q+T9YvwLDJoOApLQ==, + } + engines: { node: ">=12" } devlop@1.1.0: - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + resolution: + { + integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==, + } didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + resolution: + { + integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==, + } diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, + } + engines: { node: ">=8" } direction@2.0.1: - resolution: {integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==} + resolution: + { + integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==, + } hasBin: true dlv@1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + resolution: + { + integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, + } doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, + } + engines: { node: ">=0.10.0" } doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, + } + engines: { node: ">=6.0.0" } dom-accessibility-api@0.5.16: - resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + resolution: + { + integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==, + } dom-accessibility-api@0.6.3: - resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} + resolution: + { + integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==, + } dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + resolution: + { + integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==, + } domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + resolution: + { + integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, + } domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==, + } + engines: { node: ">= 4" } domutils@3.2.2: - resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} + resolution: + { + integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==, + } dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + resolution: + { + integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==, + } dotenv@16.4.7: - resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==, + } + engines: { node: ">=12" } draco3d@1.5.7: - resolution: {integrity: sha512-m6WCKt/erDXcw+70IJXnG7M3awwQPAsZvJGX5zY7beBqpELw6RDGkYVU0W43AFxye4pDZ5i2Lbyc/NNGqwjUVQ==} + resolution: + { + integrity: sha512-m6WCKt/erDXcw+70IJXnG7M3awwQPAsZvJGX5zY7beBqpELw6RDGkYVU0W43AFxye4pDZ5i2Lbyc/NNGqwjUVQ==, + } dset@3.1.4: - resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==, + } + engines: { node: ">=4" } dunder-proto@1.0.1: - resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==, + } + engines: { node: ">= 0.4" } eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + resolution: + { + integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, + } ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + resolution: + { + integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==, + } ejs@3.1.10: - resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==, + } + engines: { node: ">=0.10.0" } hasBin: true electron-to-chromium@1.5.78: - resolution: {integrity: sha512-UmwIt7HRKN1rsJfddG5UG7rCTCTAKoS9JeOy/R0zSenAyaZ8SU3RuXlwcratxhdxGRNpk03iq8O7BA3W7ibLVw==} + resolution: + { + integrity: sha512-UmwIt7HRKN1rsJfddG5UG7rCTCTAKoS9JeOy/R0zSenAyaZ8SU3RuXlwcratxhdxGRNpk03iq8O7BA3W7ibLVw==, + } emoji-regex-xs@1.0.0: - resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==} + resolution: + { + integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==, + } emoji-regex@10.4.0: - resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} + resolution: + { + integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==, + } emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + resolution: + { + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, + } emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + resolution: + { + integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, + } encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==, + } + engines: { node: ">= 0.8" } encodeurl@2.0.0: - resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==, + } + engines: { node: ">= 0.8" } encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + resolution: + { + integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==, + } enhanced-resolve@5.18.0: - resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==, + } + engines: { node: ">=10.13.0" } entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==, + } + engines: { node: ">=0.12" } error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + resolution: + { + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, + } es-abstract@1.23.9: - resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==, + } + engines: { node: ">= 0.4" } es-define-property@1.0.1: - resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==, + } + engines: { node: ">= 0.4" } es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, + } + engines: { node: ">= 0.4" } es-module-lexer@1.6.0: - resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} + resolution: + { + integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==, + } es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==, + } + engines: { node: ">= 0.4" } es-set-tostringtag@2.1.0: - resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==, + } + engines: { node: ">= 0.4" } es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + resolution: + { + integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==, + } es-to-primitive@1.3.0: - resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==, + } + engines: { node: ">= 0.4" } esast-util-from-estree@2.0.0: - resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==} + resolution: + { + integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==, + } esast-util-from-js@2.0.1: - resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==} + resolution: + { + integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==, + } esbuild-register@3.6.0: - resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==} + resolution: + { + integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==, + } peerDependencies: - esbuild: '>=0.12 <1' + esbuild: ">=0.12 <1" esbuild@0.19.12: - resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==, + } + engines: { node: ">=12" } hasBin: true esbuild@0.21.5: - resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==, + } + engines: { node: ">=12" } hasBin: true esbuild@0.23.1: - resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==, + } + engines: { node: ">=18" } hasBin: true esbuild@0.24.2: - resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==, + } + engines: { node: ">=18" } hasBin: true escalade@3.2.0: - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, + } + engines: { node: ">=6" } escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + resolution: + { + integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, + } escape-latex@1.2.0: - resolution: {integrity: sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw==} + resolution: + { + integrity: sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw==, + } escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + } + engines: { node: ">=0.8.0" } escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, + } + engines: { node: ">=10" } escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, + } + engines: { node: ">=12" } eslint-compat-utils@0.5.1: - resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==, + } + engines: { node: ">=12" } peerDependencies: - eslint: '>=6.0.0' + eslint: ">=6.0.0" eslint-config-love@114.0.0: - resolution: {integrity: sha512-PScXVLQge1nucu1GZUGmYaGNZrSlI4d09W4a16GtZA2Ht/Hx2V3f7znBRiAFzqJ4yAcWuDAmXiyrbMmNYEeslA==} + resolution: + { + integrity: sha512-PScXVLQge1nucu1GZUGmYaGNZrSlI4d09W4a16GtZA2Ht/Hx2V3f7znBRiAFzqJ4yAcWuDAmXiyrbMmNYEeslA==, + } peerDependencies: eslint: ^9.12.0 - typescript: '*' + typescript: "*" eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + resolution: + { + integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==, + } eslint-module-utils@2.12.0: - resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' + resolution: + { + integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==, + } + engines: { node: ">=4" } + peerDependencies: + "@typescript-eslint/parser": "*" + eslint: "*" + eslint-import-resolver-node: "*" + eslint-import-resolver-typescript: "*" + eslint-import-resolver-webpack: "*" peerDependenciesMeta: - '@typescript-eslint/parser': + "@typescript-eslint/parser": optional: true eslint: optional: true @@ -5234,208 +8022,361 @@ packages: optional: true eslint-plugin-es-x@7.8.0: - resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==, + } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: - eslint: '>=8' + eslint: ">=8" eslint-plugin-eslint-comments@3.2.0: - resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} - engines: {node: '>=6.5.0'} + resolution: + { + integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==, + } + engines: { node: ">=6.5.0" } peerDependencies: - eslint: '>=4.19.1' + eslint: ">=4.19.1" eslint-plugin-import@2.31.0: - resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==, + } + engines: { node: ">=4" } peerDependencies: - '@typescript-eslint/parser': '*' + "@typescript-eslint/parser": "*" eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 peerDependenciesMeta: - '@typescript-eslint/parser': + "@typescript-eslint/parser": optional: true eslint-plugin-n@17.15.1: - resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: - eslint: '>=8.23.0' + eslint: ">=8.23.0" eslint-plugin-promise@7.2.1: - resolution: {integrity: sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 eslint-plugin-react-hooks@5.1.0: - resolution: {integrity: sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==, + } + engines: { node: ">=10" } peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 eslint-plugin-react-refresh@0.4.16: - resolution: {integrity: sha512-slterMlxAhov/DZO8NScf6mEeMBBXodFUolijDvrtTxyezyLoTQaa73FyYus/VbTdftd8wBgBxPMRk3poleXNQ==} + resolution: + { + integrity: sha512-slterMlxAhov/DZO8NScf6mEeMBBXodFUolijDvrtTxyezyLoTQaa73FyYus/VbTdftd8wBgBxPMRk3poleXNQ==, + } peerDependencies: - eslint: '>=8.40' + eslint: ">=8.40" eslint-scope@8.2.0: - resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } eslint-visitor-keys@4.2.0: - resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } eslint@9.17.0: - resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } hasBin: true peerDependencies: - jiti: '*' + jiti: "*" peerDependenciesMeta: jiti: optional: true espree@10.3.0: - resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, + } + engines: { node: ">=4" } hasBin: true esquery@1.6.0: - resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==, + } + engines: { node: ">=0.10" } esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, + } + engines: { node: ">=4.0" } estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, + } + engines: { node: ">=4.0" } estree-util-attach-comments@3.0.0: - resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==} + resolution: + { + integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==, + } estree-util-build-jsx@3.0.1: - resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==} + resolution: + { + integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==, + } estree-util-is-identifier-name@3.0.0: - resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} + resolution: + { + integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==, + } estree-util-scope@1.0.0: - resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==} + resolution: + { + integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==, + } estree-util-to-js@2.0.0: - resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} + resolution: + { + integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==, + } estree-util-value-to-estree@3.2.1: - resolution: {integrity: sha512-Vt2UOjyPbNQQgT5eJh+K5aATti0OjCIAGc9SgMdOFYbohuifsWclR74l0iZTJwePMgWYdX1hlVS+dedH9XV8kw==} + resolution: + { + integrity: sha512-Vt2UOjyPbNQQgT5eJh+K5aATti0OjCIAGc9SgMdOFYbohuifsWclR74l0iZTJwePMgWYdX1hlVS+dedH9XV8kw==, + } estree-util-visit@2.0.0: - resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} + resolution: + { + integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==, + } estree-walker@1.0.1: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + resolution: + { + integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==, + } estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, + } estree-walker@3.0.3: - resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + resolution: + { + integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==, + } esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, + } + engines: { node: ">=0.10.0" } etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==, + } + engines: { node: ">= 0.6" } eval@0.1.8: - resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==, + } + engines: { node: ">= 0.8" } eventemitter3@5.0.1: - resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + resolution: + { + integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, + } execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, + } + engines: { node: ">=10" } execa@8.0.1: - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: '>=16.17'} + resolution: + { + integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, + } + engines: { node: ">=16.17" } expect-type@1.1.0: - resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==, + } + engines: { node: ">=12.0.0" } extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==, + } + engines: { node: ">=0.10.0" } extend-shallow@3.0.2: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==, + } + engines: { node: ">=0.10.0" } extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + resolution: + { + integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, + } external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, + } + engines: { node: ">=4" } extract-files@11.0.0: - resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==} - engines: {node: ^12.20 || >= 14.13} + resolution: + { + integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==, + } + engines: { node: ^12.20 || >= 14.13 } fast-decode-uri-component@1.0.1: - resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} + resolution: + { + integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==, + } fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } fast-glob@3.3.3: - resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} - engines: {node: '>=8.6.0'} + resolution: + { + integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==, + } + engines: { node: ">=8.6.0" } fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + resolution: + { + integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, + } fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + resolution: + { + integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, + } fast-querystring@1.1.2: - resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==} + resolution: + { + integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==, + } fast-uri@3.0.5: - resolution: {integrity: sha512-5JnBCWpFlMo0a3ciDy/JckMzzv1U9coZrIhedq+HXxxUfDTAiS0LA8OKVao4G9BxmCVck/jtA5r3KAtRWEyD8Q==} + resolution: + { + integrity: sha512-5JnBCWpFlMo0a3ciDy/JckMzzv1U9coZrIhedq+HXxxUfDTAiS0LA8OKVao4G9BxmCVck/jtA5r3KAtRWEyD8Q==, + } fastq@1.18.0: - resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} + resolution: + { + integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==, + } fault@2.0.1: - resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} + resolution: + { + integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==, + } fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + resolution: + { + integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==, + } fbjs-css-vars@1.0.2: - resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==} + resolution: + { + integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==, + } fbjs@3.0.5: - resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==} + resolution: + { + integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==, + } fdir@6.4.2: - resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} + resolution: + { + integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==, + } peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: @@ -5443,101 +8384,173 @@ packages: optional: true fetch-cookie@3.1.0: - resolution: {integrity: sha512-s/XhhreJpqH0ftkGVcQt8JE9bqk+zRn4jF5mPJXWZeQMCI5odV9K+wEWYbnzFPHgQZlvPSMjS4n4yawWE8RINw==} + resolution: + { + integrity: sha512-s/XhhreJpqH0ftkGVcQt8JE9bqk+zRn4jF5mPJXWZeQMCI5odV9K+wEWYbnzFPHgQZlvPSMjS4n4yawWE8RINw==, + } fflate@0.6.10: - resolution: {integrity: sha512-IQrh3lEPM93wVCEczc9SaAOvkmcoQn/G8Bo1e8ZPlY3X3bnAxWaBdvTdvM1hP62iZp0BXWDy4vTAy4fF0+Dlpg==} + resolution: + { + integrity: sha512-IQrh3lEPM93wVCEczc9SaAOvkmcoQn/G8Bo1e8ZPlY3X3bnAxWaBdvTdvM1hP62iZp0BXWDy4vTAy4fF0+Dlpg==, + } fflate@0.8.2: - resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==} + resolution: + { + integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==, + } figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==, + } + engines: { node: ">=8" } file-entry-cache@8.0.0: - resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} - engines: {node: '>=16.0.0'} + resolution: + { + integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==, + } + engines: { node: ">=16.0.0" } file-selector@0.5.0: - resolution: {integrity: sha512-s8KNnmIDTBoD0p9uJ9uD0XY38SCeBOtj0UMXyQSLg1Ypfrfj8+dAvwsLjYQkQ2GjhVtp2HrnF5cJzMhBjfD8HA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-s8KNnmIDTBoD0p9uJ9uD0XY38SCeBOtj0UMXyQSLg1Ypfrfj8+dAvwsLjYQkQ2GjhVtp2HrnF5cJzMhBjfD8HA==, + } + engines: { node: ">= 10" } file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + resolution: + { + integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==, + } filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + resolution: + { + integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, + } filesize@10.1.6: - resolution: {integrity: sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==} - engines: {node: '>= 10.4.0'} + resolution: + { + integrity: sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==, + } + engines: { node: ">= 10.4.0" } fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==, + } + engines: { node: ">=8" } filter-obj@1.1.0: - resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==, + } + engines: { node: ">=0.10.0" } find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, + } + engines: { node: ">=8" } find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, + } + engines: { node: ">=10" } flat-cache@4.0.1: - resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==, + } + engines: { node: ">=16" } flatted@3.3.2: - resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} + resolution: + { + integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==, + } follow-redirects@1.15.9: - resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==, + } + engines: { node: ">=4.0" } peerDependencies: - debug: '*' + debug: "*" peerDependenciesMeta: debug: optional: true for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, + } for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==, + } + engines: { node: ">=0.10.0" } foreground-child@3.3.0: - resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==, + } + engines: { node: ">=14" } form-data@4.0.1: - resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==, + } + engines: { node: ">= 6" } format@0.2.2: - resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} - engines: {node: '>=0.4.x'} + resolution: + { + integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==, + } + engines: { node: ">=0.4.x" } fraction.js@4.3.4: - resolution: {integrity: sha512-pwiTgt0Q7t+GHZA4yaLjObx4vXmmdcS0iSJ19o8d/goUGgItX9UZWKWNnLHehxviD8wU2IWRsnR8cD5+yOJP2Q==} + resolution: + { + integrity: sha512-pwiTgt0Q7t+GHZA4yaLjObx4vXmmdcS0iSJ19o8d/goUGgItX9UZWKWNnLHehxviD8wU2IWRsnR8cD5+yOJP2Q==, + } fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + resolution: + { + integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==, + } framer-motion@11.16.0: - resolution: {integrity: sha512-oL2AWqLQuw0+CNEUa0sz3mWC/n3i147CckvpQn8bLRs30b+HxTxlRi0YR2FpHHhAbWV7DKjNdHU42KHLfBWh/g==} + resolution: + { + integrity: sha512-oL2AWqLQuw0+CNEUa0sz3mWC/n3i147CckvpQn8bLRs30b+HxTxlRi0YR2FpHHhAbWV7DKjNdHU42KHLfBWh/g==, + } peerDependencies: - '@emotion/is-prop-valid': '*' + "@emotion/is-prop-valid": "*" react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 peerDependenciesMeta: - '@emotion/is-prop-valid': + "@emotion/is-prop-valid": optional: true react: optional: true @@ -5545,153 +8558,270 @@ packages: optional: true fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==, + } + engines: { node: ">= 0.6" } fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==, + } + engines: { node: ">=12" } fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} - engines: {node: '>=14.14'} + resolution: + { + integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==, + } + engines: { node: ">=14.14" } fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==, + } + engines: { node: ">=10" } fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + resolution: + { + integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, + } fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + resolution: + { + integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + resolution: + { + integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, + } function.prototype.name@1.1.8: - resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==, + } + engines: { node: ">= 0.4" } functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + resolution: + { + integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, + } gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, + } + engines: { node: ">=6.9.0" } get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} + resolution: + { + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, + } + engines: { node: 6.* || 8.* || >= 10.* } get-func-name@2.0.2: - resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} + resolution: + { + integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==, + } get-intrinsic@1.2.7: - resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==, + } + engines: { node: ">= 0.4" } get-nonce@1.0.1: - resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==, + } + engines: { node: ">=6" } get-own-enumerable-property-symbols@3.0.2: - resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} + resolution: + { + integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==, + } get-proto@1.0.1: - resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==, + } + engines: { node: ">= 0.4" } get-starknet-core@3.3.4: - resolution: {integrity: sha512-KEnzAMr4f7z7dMh4g5lWDZ+eXtOEl++VPN5Flmmj8HiPmRrPOINEIwwNL/dN+Ey1kBxQOtOMQwCxJ9qlkRIgFw==} + resolution: + { + integrity: sha512-KEnzAMr4f7z7dMh4g5lWDZ+eXtOEl++VPN5Flmmj8HiPmRrPOINEIwwNL/dN+Ey1kBxQOtOMQwCxJ9qlkRIgFw==, + } peerDependencies: starknet: ^5.18.0 get-starknet-core@4.0.0: - resolution: {integrity: sha512-6pLmidQZkC3wZsrHY99grQHoGpuuXqkbSP65F8ov1/JsEI8DDLkhsAuLCKFzNOK56cJp+f1bWWfTJ57e9r5eqQ==} + resolution: + { + integrity: sha512-6pLmidQZkC3wZsrHY99grQHoGpuuXqkbSP65F8ov1/JsEI8DDLkhsAuLCKFzNOK56cJp+f1bWWfTJ57e9r5eqQ==, + } get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, + } + engines: { node: ">=10" } get-stream@8.0.1: - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, + } + engines: { node: ">=16" } get-symbol-description@1.1.0: - resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==, + } + engines: { node: ">= 0.4" } get-tsconfig@4.8.1: - resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} + resolution: + { + integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==, + } get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==, + } + engines: { node: ">=0.10.0" } github-slugger@2.0.0: - resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + resolution: + { + integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==, + } glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, + } + engines: { node: ">= 6" } glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, + } + engines: { node: ">=10.13.0" } glob@10.4.5: - resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + resolution: + { + integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==, + } hasBin: true glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + resolution: + { + integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, + } deprecated: Glob versions prior to v9 are no longer supported globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, + } + engines: { node: ">=4" } globals@14.0.0: - resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==, + } + engines: { node: ">=18" } globals@15.14.0: - resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==, + } + engines: { node: ">=18" } globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==, + } + engines: { node: ">= 0.4" } globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, + } + engines: { node: ">=10" } globby@13.2.2: - resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } goober@2.1.16: - resolution: {integrity: sha512-erjk19y1U33+XAMe1VTvIONHYoSqE4iS7BYUZfHaqeohLmnC0FdxEh7rQU+6MZ4OajItzjZFSRtVANrQwNq6/g==} + resolution: + { + integrity: sha512-erjk19y1U33+XAMe1VTvIONHYoSqE4iS7BYUZfHaqeohLmnC0FdxEh7rQU+6MZ4OajItzjZFSRtVANrQwNq6/g==, + } peerDependencies: csstype: ^3.0.10 gopd@1.2.0: - resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==, + } + engines: { node: ">= 0.4" } graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + resolution: + { + integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, + } graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + resolution: + { + integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, + } graphql-config@5.1.3: - resolution: {integrity: sha512-RBhejsPjrNSuwtckRlilWzLVt2j8itl74W9Gke1KejDTz7oaA5kVd6wRn9zK9TS5mcmIYGxf7zN7a1ORMdxp1Q==} - engines: {node: '>= 16.0.0'} + resolution: + { + integrity: sha512-RBhejsPjrNSuwtckRlilWzLVt2j8itl74W9Gke1KejDTz7oaA5kVd6wRn9zK9TS5mcmIYGxf7zN7a1ORMdxp1Q==, + } + engines: { node: ">= 16.0.0" } peerDependencies: cosmiconfig-toml-loader: ^1.0.0 graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -5700,1064 +8830,1943 @@ packages: optional: true graphql-request@6.1.0: - resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==} + resolution: + { + integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==, + } peerDependencies: graphql: 14 - 16 graphql-request@7.1.2: - resolution: {integrity: sha512-+XE3iuC55C2di5ZUrB4pjgwe+nIQBuXVIK9J98wrVwojzDW3GMdSBZfxUk8l4j9TieIpjpggclxhNEU9ebGF8w==} + resolution: + { + integrity: sha512-+XE3iuC55C2di5ZUrB4pjgwe+nIQBuXVIK9J98wrVwojzDW3GMdSBZfxUk8l4j9TieIpjpggclxhNEU9ebGF8w==, + } peerDependencies: graphql: 14 - 16 graphql-tag@2.12.6: - resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==, + } + engines: { node: ">=10" } peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 graphql-ws@5.16.0: - resolution: {integrity: sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==, + } + engines: { node: ">=10" } peerDependencies: - graphql: '>=0.11 <=16' + graphql: ">=0.11 <=16" graphql@16.10.0: - resolution: {integrity: sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==} - engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} + resolution: + { + integrity: sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==, + } + engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 } gsap@3.12.5: - resolution: {integrity: sha512-srBfnk4n+Oe/ZnMIOXt3gT605BX9x5+rh/prT2F1SsNJsU1XuMiP0E2aptW481OnonOGACZWBqseH5Z7csHxhQ==} + resolution: + { + integrity: sha512-srBfnk4n+Oe/ZnMIOXt3gT605BX9x5+rh/prT2F1SsNJsU1XuMiP0E2aptW481OnonOGACZWBqseH5Z7csHxhQ==, + } has-bigints@1.1.0: - resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==, + } + engines: { node: ">= 0.4" } has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, + } + engines: { node: ">=8" } has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + resolution: + { + integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, + } has-proto@1.2.0: - resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==, + } + engines: { node: ">= 0.4" } has-symbols@1.1.0: - resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==, + } + engines: { node: ">= 0.4" } has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, + } + engines: { node: ">= 0.4" } hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, + } + engines: { node: ">= 0.4" } hast-util-classnames@3.0.0: - resolution: {integrity: sha512-tI3JjoGDEBVorMAWK4jNRsfLMYmih1BUOG3VV36pH36njs1IEl7xkNrVTD2mD2yYHmQCa5R/fj61a8IAF4bRaQ==} + resolution: + { + integrity: sha512-tI3JjoGDEBVorMAWK4jNRsfLMYmih1BUOG3VV36pH36njs1IEl7xkNrVTD2mD2yYHmQCa5R/fj61a8IAF4bRaQ==, + } hast-util-has-property@3.0.0: - resolution: {integrity: sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==} + resolution: + { + integrity: sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==, + } hast-util-heading-rank@3.0.0: - resolution: {integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==} + resolution: + { + integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==, + } hast-util-is-element@3.0.0: - resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} + resolution: + { + integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==, + } hast-util-parse-selector@4.0.0: - resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} + resolution: + { + integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==, + } hast-util-select@6.0.3: - resolution: {integrity: sha512-OVRQlQ1XuuLP8aFVLYmC2atrfWHS5UD3shonxpnyrjcCkwtvmt/+N6kYJdcY4mkMJhxp4kj2EFIxQ9kvkkt/eQ==} + resolution: + { + integrity: sha512-OVRQlQ1XuuLP8aFVLYmC2atrfWHS5UD3shonxpnyrjcCkwtvmt/+N6kYJdcY4mkMJhxp4kj2EFIxQ9kvkkt/eQ==, + } hast-util-to-estree@3.1.1: - resolution: {integrity: sha512-IWtwwmPskfSmma9RpzCappDUitC8t5jhAynHhc1m2+5trOgsrp7txscUSavc5Ic8PATyAjfrCK1wgtxh2cICVQ==} + resolution: + { + integrity: sha512-IWtwwmPskfSmma9RpzCappDUitC8t5jhAynHhc1m2+5trOgsrp7txscUSavc5Ic8PATyAjfrCK1wgtxh2cICVQ==, + } hast-util-to-html@9.0.4: - resolution: {integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==} + resolution: + { + integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==, + } hast-util-to-jsx-runtime@2.3.2: - resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==} + resolution: + { + integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==, + } hast-util-to-string@3.0.1: - resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==} + resolution: + { + integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==, + } hast-util-whitespace@3.0.0: - resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + resolution: + { + integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==, + } hastscript@8.0.0: - resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} + resolution: + { + integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==, + } header-case@2.0.4: - resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} + resolution: + { + integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==, + } hono@3.12.12: - resolution: {integrity: sha512-5IAMJOXfpA5nT+K0MNjClchzz0IhBHs2Szl7WFAhrFOsbtQsYmNynFyJRg/a3IPsmCfxcrf8txUGiNShXpK5Rg==} - engines: {node: '>=16.0.0'} + resolution: + { + integrity: sha512-5IAMJOXfpA5nT+K0MNjClchzz0IhBHs2Szl7WFAhrFOsbtQsYmNynFyJRg/a3IPsmCfxcrf8txUGiNShXpK5Rg==, + } + engines: { node: ">=16.0.0" } howler@2.2.4: - resolution: {integrity: sha512-iARIBPgcQrwtEr+tALF+rapJ8qSc+Set2GJQl7xT1MQzWaVkFebdJhR3alVlSiUf5U7nAANKuj3aWpwerocD5w==} + resolution: + { + integrity: sha512-iARIBPgcQrwtEr+tALF+rapJ8qSc+Set2GJQl7xT1MQzWaVkFebdJhR3alVlSiUf5U7nAANKuj3aWpwerocD5w==, + } html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + resolution: + { + integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, + } html-void-elements@3.0.0: - resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} + resolution: + { + integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==, + } http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==, + } + engines: { node: ">= 0.8" } http-proxy-agent@7.0.2: - resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} - engines: {node: '>= 14'} + resolution: + { + integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==, + } + engines: { node: ">= 14" } https-proxy-agent@7.0.6: - resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} - engines: {node: '>= 14'} + resolution: + { + integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==, + } + engines: { node: ">= 14" } human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} + resolution: + { + integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, + } + engines: { node: ">=10.17.0" } human-signals@5.0.0: - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: '>=16.17.0'} + resolution: + { + integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, + } + engines: { node: ">=16.17.0" } iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, + } + engines: { node: ">=0.10.0" } iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==, + } + engines: { node: ">=0.10.0" } idb@7.1.1: - resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} + resolution: + { + integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==, + } ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + resolution: + { + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, + } ignore@5.3.2: - resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==, + } + engines: { node: ">= 4" } immutable@3.7.6: - resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==, + } + engines: { node: ">=0.8.0" } immutable@4.3.7: - resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} + resolution: + { + integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==, + } import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, + } + engines: { node: ">=6" } import-from@4.0.0: - resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==} - engines: {node: '>=12.2'} + resolution: + { + integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==, + } + engines: { node: ">=12.2" } imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, + } + engines: { node: ">=0.8.19" } indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, + } + engines: { node: ">=8" } inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + resolution: + { + integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, + } deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, + } inline-style-parser@0.2.4: - resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} + resolution: + { + integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==, + } inquirer@8.2.6: - resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==, + } + engines: { node: ">=12.0.0" } internal-slot@1.1.0: - resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==, + } + engines: { node: ">= 0.4" } invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + resolution: + { + integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==, + } is-absolute@1.0.0: - resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==, + } + engines: { node: ">=0.10.0" } is-alphabetical@2.0.1: - resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + resolution: + { + integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==, + } is-alphanumerical@2.0.1: - resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + resolution: + { + integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==, + } is-arguments@1.2.0: - resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==, + } + engines: { node: ">= 0.4" } is-array-buffer@3.0.5: - resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==, + } + engines: { node: ">= 0.4" } is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + resolution: + { + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, + } is-async-function@2.1.0: - resolution: {integrity: sha512-GExz9MtyhlZyXYLxzlJRj5WUCE661zhDa1Yna52CN57AJsymh+DvXXjyveSioqSRdxvUrdKdvqB1b5cVKsNpWQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-GExz9MtyhlZyXYLxzlJRj5WUCE661zhDa1Yna52CN57AJsymh+DvXXjyveSioqSRdxvUrdKdvqB1b5cVKsNpWQ==, + } + engines: { node: ">= 0.4" } is-bigint@1.1.0: - resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==, + } + engines: { node: ">= 0.4" } is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, + } + engines: { node: ">=8" } is-boolean-object@1.2.1: - resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==, + } + engines: { node: ">= 0.4" } is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==, + } + engines: { node: ">=4" } is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, + } + engines: { node: ">= 0.4" } is-core-module@2.16.1: - resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==, + } + engines: { node: ">= 0.4" } is-data-view@1.0.2: - resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==, + } + engines: { node: ">= 0.4" } is-date-object@1.1.0: - resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==, + } + engines: { node: ">= 0.4" } is-decimal@2.0.1: - resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + resolution: + { + integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==, + } is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==, + } + engines: { node: ">=8" } hasBin: true is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==, + } + engines: { node: ">=0.10.0" } is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==, + } + engines: { node: ">=0.10.0" } is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, + } + engines: { node: ">=0.10.0" } is-finalizationregistry@1.1.1: - resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==, + } + engines: { node: ">= 0.4" } is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, + } + engines: { node: ">=8" } is-generator-function@1.1.0: - resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==, + } + engines: { node: ">= 0.4" } is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, + } + engines: { node: ">=0.10.0" } is-hexadecimal@2.0.1: - resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} + resolution: + { + integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==, + } is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==, + } + engines: { node: ">=8" } is-interactive@2.0.0: - resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==, + } + engines: { node: ">=12" } is-lower-case@2.0.2: - resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==} + resolution: + { + integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==, + } is-map@2.0.3: - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==, + } + engines: { node: ">= 0.4" } is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + resolution: + { + integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==, + } is-number-object@1.1.1: - resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==, + } + engines: { node: ">= 0.4" } is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, + } + engines: { node: ">=0.12.0" } is-obj@1.0.1: - resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==, + } + engines: { node: ">=0.10.0" } is-plain-obj@4.1.0: - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==, + } + engines: { node: ">=12" } is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==, + } + engines: { node: ">=0.10.0" } is-regex@1.2.1: - resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==, + } + engines: { node: ">= 0.4" } is-regexp@1.0.0: - resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==, + } + engines: { node: ">=0.10.0" } is-relative@1.0.0: - resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==, + } + engines: { node: ">=0.10.0" } is-set@2.0.3: - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==, + } + engines: { node: ">= 0.4" } is-shared-array-buffer@1.0.4: - resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==, + } + engines: { node: ">= 0.4" } is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, + } + engines: { node: ">=8" } is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } is-string@1.1.1: - resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==, + } + engines: { node: ">= 0.4" } is-symbol@1.1.1: - resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==, + } + engines: { node: ">= 0.4" } is-typed-array@1.1.15: - resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==, + } + engines: { node: ">= 0.4" } is-unc-path@1.0.0: - resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==, + } + engines: { node: ">=0.10.0" } is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, + } + engines: { node: ">=10" } is-unicode-supported@1.3.0: - resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==, + } + engines: { node: ">=12" } is-upper-case@2.0.2: - resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==} + resolution: + { + integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==, + } is-weakmap@2.0.2: - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==, + } + engines: { node: ">= 0.4" } is-weakref@1.1.0: - resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==, + } + engines: { node: ">= 0.4" } is-weakset@2.0.4: - resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==, + } + engines: { node: ">= 0.4" } is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, + } + engines: { node: ">=0.10.0" } is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==, + } + engines: { node: ">=8" } isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, + } isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, + } isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==, + } + engines: { node: ">=0.10.0" } isomorphic-fetch@3.0.0: - resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==} + resolution: + { + integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==, + } isomorphic-ws@5.0.0: - resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} + resolution: + { + integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==, + } peerDependencies: - ws: '*' + ws: "*" isows@1.0.3: - resolution: {integrity: sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg==} + resolution: + { + integrity: sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg==, + } peerDependencies: - ws: '*' + ws: "*" isows@1.0.6: - resolution: {integrity: sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw==} + resolution: + { + integrity: sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw==, + } peerDependencies: - ws: '*' + ws: "*" istanbul-lib-coverage@3.2.2: - resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==, + } + engines: { node: ">=8" } istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==, + } + engines: { node: ">=10" } istanbul-lib-source-maps@5.0.6: - resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==, + } + engines: { node: ">=10" } istanbul-reports@3.1.7: - resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==, + } + engines: { node: ">=8" } jackspeak@3.4.3: - resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + resolution: + { + integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==, + } jake@10.9.2: - resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==, + } + engines: { node: ">=10" } hasBin: true javascript-natural-sort@0.7.1: - resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==} + resolution: + { + integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==, + } javascript-stringify@2.1.0: - resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} + resolution: + { + integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==, + } jiti@1.21.7: - resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==} + resolution: + { + integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==, + } hasBin: true jiti@2.4.2: - resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} + resolution: + { + integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==, + } hasBin: true jju@1.4.0: - resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} + resolution: + { + integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==, + } jose@5.9.6: - resolution: {integrity: sha512-AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ==} + resolution: + { + integrity: sha512-AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ==, + } jotai@2.11.0: - resolution: {integrity: sha512-zKfoBBD1uDw3rljwHkt0fWuja1B76R7CjznuBO+mSX6jpsO1EBeWNRKpeaQho9yPI/pvCv4recGfgOXGxwPZvQ==} - engines: {node: '>=12.20.0'} - peerDependencies: - '@types/react': '>=17.0.0' - react: '>=17.0.0' + resolution: + { + integrity: sha512-zKfoBBD1uDw3rljwHkt0fWuja1B76R7CjznuBO+mSX6jpsO1EBeWNRKpeaQho9yPI/pvCv4recGfgOXGxwPZvQ==, + } + engines: { node: ">=12.20.0" } + peerDependencies: + "@types/react": ">=17.0.0" + react: ">=17.0.0" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true react: optional: true joycon@3.1.1: - resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==, + } + engines: { node: ">=10" } js-cookie@3.0.5: - resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==, + } + engines: { node: ">=14" } js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, + } js-tokens@9.0.1: - resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} + resolution: + { + integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==, + } js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + } hasBin: true jsdoc-type-pratt-parser@4.1.0: - resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==, + } + engines: { node: ">=12.0.0" } jsesc@3.0.2: - resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==, + } + engines: { node: ">=6" } hasBin: true jsesc@3.1.0: - resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==, + } + engines: { node: ">=6" } hasBin: true json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + resolution: + { + integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==, + } json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + resolution: + { + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, + } json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + resolution: + { + integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, + } json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + resolution: + { + integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, + } json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + resolution: + { + integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==, + } json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + resolution: + { + integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, + } json-to-pretty-yaml@1.2.2: - resolution: {integrity: sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A==} - engines: {node: '>= 0.2.0'} + resolution: + { + integrity: sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A==, + } + engines: { node: ">= 0.2.0" } json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + resolution: + { + integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, + } hasBin: true json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, + } + engines: { node: ">=6" } hasBin: true jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + resolution: + { + integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, + } jsonpointer@5.0.1: - resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==, + } + engines: { node: ">=0.10.0" } keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + resolution: + { + integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==, + } leva@0.9.35: - resolution: {integrity: sha512-sp/ZbHGrrzM+eq+wIAc9X7C5qFagNERYkwaulKI/xy0XrDPV67jLUSSqTCFSoSc0Uk96j3oephYoO/6I8mZNuw==} + resolution: + { + integrity: sha512-sp/ZbHGrrzM+eq+wIAc9X7C5qFagNERYkwaulKI/xy0XrDPV67jLUSSqTCFSoSc0Uk96j3oephYoO/6I8mZNuw==, + } peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + react: ">=16.8.0" + react-dom: ">=16.8.0" leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, + } + engines: { node: ">=6" } levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, + } + engines: { node: ">= 0.8.0" } lil-gui@0.19.2: - resolution: {integrity: sha512-nU8j4ND702ouGfQZoaTN4dfXxacvGOAVK0DtmZBVcUYUAeYQXLQAjAN50igMHiba3T5jZyKEjXZU+Ntm1Qs6ZQ==} + resolution: + { + integrity: sha512-nU8j4ND702ouGfQZoaTN4dfXxacvGOAVK0DtmZBVcUYUAeYQXLQAjAN50igMHiba3T5jZyKEjXZU+Ntm1Qs6ZQ==, + } lilconfig@3.1.3: - resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==, + } + engines: { node: ">=14" } lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, + } linkify-it@5.0.0: - resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} + resolution: + { + integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==, + } listr2@4.0.5: - resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==, + } + engines: { node: ">=12" } peerDependencies: - enquirer: '>= 2.3.0 < 3' + enquirer: ">= 2.3.0 < 3" peerDependenciesMeta: enquirer: optional: true load-tsconfig@0.2.5: - resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } local-pkg@0.5.1: - resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==, + } + engines: { node: ">=14" } locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, + } + engines: { node: ">=8" } locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, + } + engines: { node: ">=10" } lodash.castarray@4.4.0: - resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==} + resolution: + { + integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==, + } lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + resolution: + { + integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, + } lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + resolution: + { + integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, + } lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, + } lodash.sortby@4.7.0: - resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} + resolution: + { + integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==, + } lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, + } + engines: { node: ">=10" } log-symbols@5.1.0: - resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==, + } + engines: { node: ">=12" } log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==, + } + engines: { node: ">=10" } longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + resolution: + { + integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==, + } loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + resolution: + { + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, + } hasBin: true lossless-json@4.0.2: - resolution: {integrity: sha512-+z0EaLi2UcWi8MZRxA5iTb6m4Ys4E80uftGY+yG5KNFJb5EceQXOhdW/pWJZ8m97s26u7yZZAYMcKWNztSZssA==} + resolution: + { + integrity: sha512-+z0EaLi2UcWi8MZRxA5iTb6m4Ys4E80uftGY+yG5KNFJb5EceQXOhdW/pWJZ8m97s26u7yZZAYMcKWNztSZssA==, + } loupe@2.3.7: - resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} + resolution: + { + integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==, + } loupe@3.1.2: - resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} + resolution: + { + integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==, + } lower-case-first@2.0.2: - resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==} + resolution: + { + integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==, + } lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + resolution: + { + integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, + } lru-cache@10.4.3: - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + resolution: + { + integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, + } lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + resolution: + { + integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, + } lucide-react@0.365.0: - resolution: {integrity: sha512-sJYpPyyzGHI4B3pys+XSFnE4qtSWc68rFnDLxbNNKjkLST5XSx9DNn5+1Z3eFgFiw39PphNRiVBSVb+AL3oKwA==} + resolution: + { + integrity: sha512-sJYpPyyzGHI4B3pys+XSFnE4qtSWc68rFnDLxbNNKjkLST5XSx9DNn5+1Z3eFgFiw39PphNRiVBSVb+AL3oKwA==, + } peerDependencies: react: ^16.5.1 || ^17.0.0 || ^18.0.0 lunr@2.3.9: - resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} + resolution: + { + integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==, + } lz-string@1.5.0: - resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + resolution: + { + integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==, + } hasBin: true magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + resolution: + { + integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==, + } magic-string@0.27.0: - resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==, + } + engines: { node: ">=12" } magic-string@0.30.17: - resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + resolution: + { + integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==, + } magicast@0.3.5: - resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} + resolution: + { + integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==, + } make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==, + } + engines: { node: ">=10" } map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==, + } + engines: { node: ">=0.10.0" } map-or-similar@1.5.0: - resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} + resolution: + { + integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==, + } mark.js@8.11.1: - resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==} + resolution: + { + integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==, + } markdown-extensions@2.0.0: - resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==, + } + engines: { node: ">=16" } markdown-it@14.1.0: - resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} + resolution: + { + integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==, + } hasBin: true markdown-table@3.0.4: - resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + resolution: + { + integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==, + } math-intrinsics@1.1.0: - resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==, + } + engines: { node: ">= 0.4" } mathjs@12.4.3: - resolution: {integrity: sha512-oHdGPDbp7gO873xxG90RLq36IuicuKvbpr/bBG5g9c8Obm/VsKVrK9uoRZZHUodohzlnmCEqfDzbR3LH6m+aAQ==} - engines: {node: '>= 18'} + resolution: + { + integrity: sha512-oHdGPDbp7gO873xxG90RLq36IuicuKvbpr/bBG5g9c8Obm/VsKVrK9uoRZZHUodohzlnmCEqfDzbR3LH6m+aAQ==, + } + engines: { node: ">= 18" } hasBin: true mdast-util-directive@3.0.0: - resolution: {integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==} + resolution: + { + integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==, + } mdast-util-find-and-replace@3.0.2: - resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} + resolution: + { + integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==, + } mdast-util-from-markdown@2.0.2: - resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + resolution: + { + integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==, + } mdast-util-frontmatter@2.0.1: - resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==} + resolution: + { + integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==, + } mdast-util-gfm-autolink-literal@2.0.1: - resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + resolution: + { + integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==, + } mdast-util-gfm-footnote@2.0.0: - resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} + resolution: + { + integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==, + } mdast-util-gfm-strikethrough@2.0.0: - resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + resolution: + { + integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==, + } mdast-util-gfm-table@2.0.0: - resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + resolution: + { + integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==, + } mdast-util-gfm-task-list-item@2.0.0: - resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + resolution: + { + integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==, + } mdast-util-gfm@3.0.0: - resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} + resolution: + { + integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==, + } mdast-util-mdx-expression@2.0.1: - resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==} + resolution: + { + integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==, + } mdast-util-mdx-jsx@3.1.3: - resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==} + resolution: + { + integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==, + } mdast-util-mdx@3.0.0: - resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==} + resolution: + { + integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==, + } mdast-util-mdxjs-esm@2.0.1: - resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} + resolution: + { + integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==, + } mdast-util-phrasing@4.1.0: - resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + resolution: + { + integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==, + } mdast-util-to-hast@13.2.0: - resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + resolution: + { + integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==, + } mdast-util-to-markdown@2.1.2: - resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + resolution: + { + integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==, + } mdast-util-to-string@4.0.0: - resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + resolution: + { + integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==, + } mdn-data@2.0.28: - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + resolution: + { + integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==, + } mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + resolution: + { + integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==, + } mdurl@2.0.0: - resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} + resolution: + { + integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==, + } media-query-parser@2.0.2: - resolution: {integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==} + resolution: + { + integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==, + } memoizerific@1.11.3: - resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} + resolution: + { + integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==, + } merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + resolution: + { + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, + } merge-value@1.0.0: - resolution: {integrity: sha512-fJMmvat4NeKz63Uv9iHWcPDjCWcCkoiRoajRTEO8hlhUC6rwaHg0QCF9hBOTjZmm4JuglPckPSTtcuJL5kp0TQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-fJMmvat4NeKz63Uv9iHWcPDjCWcCkoiRoajRTEO8hlhUC6rwaHg0QCF9hBOTjZmm4JuglPckPSTtcuJL5kp0TQ==, + } + engines: { node: ">=0.10.0" } merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + } + engines: { node: ">= 8" } meros@1.3.0: - resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==} - engines: {node: '>=13'} + resolution: + { + integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==, + } + engines: { node: ">=13" } peerDependencies: - '@types/node': '>=13' + "@types/node": ">=13" peerDependenciesMeta: - '@types/node': + "@types/node": optional: true meshoptimizer@0.18.1: - resolution: {integrity: sha512-ZhoIoL7TNV4s5B6+rx5mC//fw8/POGyNxS/DZyCJeiZ12ScLfVwRE/GfsxwiTkMYYD5DmK2/JXnEVXqL4rF+Sw==} + resolution: + { + integrity: sha512-ZhoIoL7TNV4s5B6+rx5mC//fw8/POGyNxS/DZyCJeiZ12ScLfVwRE/GfsxwiTkMYYD5DmK2/JXnEVXqL4rF+Sw==, + } micro-starknet@0.2.3: - resolution: {integrity: sha512-6XBcC+GerlwJSR4iA0VaeXtS2wrayWFcA4PEzrJPMuFmWCaUtuGIq5K/DB5F/XgnL54/zl2Bxo690Lj7mYVA8A==} + resolution: + { + integrity: sha512-6XBcC+GerlwJSR4iA0VaeXtS2wrayWFcA4PEzrJPMuFmWCaUtuGIq5K/DB5F/XgnL54/zl2Bxo690Lj7mYVA8A==, + } micromark-core-commonmark@2.0.2: - resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==} + resolution: + { + integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==, + } micromark-extension-directive@3.0.2: - resolution: {integrity: sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==} + resolution: + { + integrity: sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==, + } micromark-extension-frontmatter@2.0.0: - resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==} + resolution: + { + integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==, + } micromark-extension-gfm-autolink-literal@2.1.0: - resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + resolution: + { + integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==, + } micromark-extension-gfm-footnote@2.1.0: - resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + resolution: + { + integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==, + } micromark-extension-gfm-strikethrough@2.1.0: - resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + resolution: + { + integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==, + } micromark-extension-gfm-table@2.1.0: - resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} + resolution: + { + integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==, + } micromark-extension-gfm-tagfilter@2.0.0: - resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + resolution: + { + integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==, + } micromark-extension-gfm-task-list-item@2.1.0: - resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + resolution: + { + integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==, + } micromark-extension-gfm@3.0.0: - resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + resolution: + { + integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==, + } micromark-extension-mdx-expression@3.0.0: - resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==} + resolution: + { + integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==, + } micromark-extension-mdx-jsx@3.0.1: - resolution: {integrity: sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==} + resolution: + { + integrity: sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==, + } micromark-extension-mdx-md@2.0.0: - resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==} + resolution: + { + integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==, + } micromark-extension-mdxjs-esm@3.0.0: - resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==} + resolution: + { + integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==, + } micromark-extension-mdxjs@3.0.0: - resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==} + resolution: + { + integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==, + } micromark-factory-destination@2.0.1: - resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + resolution: + { + integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==, + } micromark-factory-label@2.0.1: - resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + resolution: + { + integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==, + } micromark-factory-mdx-expression@2.0.2: - resolution: {integrity: sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==} + resolution: + { + integrity: sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==, + } micromark-factory-space@2.0.1: - resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + resolution: + { + integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==, + } micromark-factory-title@2.0.1: - resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + resolution: + { + integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==, + } micromark-factory-whitespace@2.0.1: - resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + resolution: + { + integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==, + } micromark-util-character@2.1.1: - resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + resolution: + { + integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==, + } micromark-util-chunked@2.0.1: - resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + resolution: + { + integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==, + } micromark-util-classify-character@2.0.1: - resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + resolution: + { + integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==, + } micromark-util-combine-extensions@2.0.1: - resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + resolution: + { + integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==, + } micromark-util-decode-numeric-character-reference@2.0.2: - resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + resolution: + { + integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==, + } micromark-util-decode-string@2.0.1: - resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + resolution: + { + integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==, + } micromark-util-encode@2.0.1: - resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + resolution: + { + integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==, + } micromark-util-events-to-acorn@2.0.2: - resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==} + resolution: + { + integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==, + } micromark-util-html-tag-name@2.0.1: - resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + resolution: + { + integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==, + } micromark-util-normalize-identifier@2.0.1: - resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + resolution: + { + integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==, + } micromark-util-resolve-all@2.0.1: - resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + resolution: + { + integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==, + } micromark-util-sanitize-uri@2.0.1: - resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + resolution: + { + integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==, + } micromark-util-subtokenize@2.0.3: - resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==} + resolution: + { + integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==, + } micromark-util-symbol@2.0.1: - resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + resolution: + { + integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==, + } micromark-util-types@2.0.1: - resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==} + resolution: + { + integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==, + } micromark@4.0.1: - resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==} + resolution: + { + integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==, + } micromatch@4.0.8: - resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==, + } + engines: { node: ">=8.6" } mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, + } + engines: { node: ">= 0.6" } mime-db@1.53.0: - resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==, + } + engines: { node: ">= 0.6" } mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, + } + engines: { node: ">= 0.6" } mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, + } + engines: { node: ">=4" } hasBin: true mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, + } + engines: { node: ">=6" } mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, + } + engines: { node: ">=12" } min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==, + } + engines: { node: ">=4" } minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + resolution: + { + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, + } minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==, + } + engines: { node: ">=10" } minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, + } + engines: { node: ">=16 || 14 >=14.17" } minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + resolution: + { + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, + } minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, + } + engines: { node: ">=16 || 14 >=14.17" } minisearch@6.3.0: - resolution: {integrity: sha512-ihFnidEeU8iXzcVHy74dhkxh/dn8Dc08ERl0xwoMMGqp4+LvRSCgicb+zGqWthVokQKvCSxITlh3P08OzdTYCQ==} + resolution: + { + integrity: sha512-ihFnidEeU8iXzcVHy74dhkxh/dn8Dc08ERl0xwoMMGqp4+LvRSCgicb+zGqWthVokQKvCSxITlh3P08OzdTYCQ==, + } minizlib@3.0.1: - resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==} - engines: {node: '>= 18'} + resolution: + { + integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==, + } + engines: { node: ">= 18" } mitt@3.0.1: - resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} + resolution: + { + integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==, + } mixin-deep@1.3.2: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==, + } + engines: { node: ">=0.10.0" } mkdirp@3.0.1: - resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==, + } + engines: { node: ">=10" } hasBin: true mlly@1.7.3: - resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==} + resolution: + { + integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==, + } mobx@6.13.5: - resolution: {integrity: sha512-/HTWzW2s8J1Gqt+WmUj5Y0mddZk+LInejADc79NJadrWla3rHzmRHki/mnEUH1AvOmbNTZ1BRbKxr8DSgfdjMA==} + resolution: + { + integrity: sha512-/HTWzW2s8J1Gqt+WmUj5Y0mddZk+LInejADc79NJadrWla3rHzmRHki/mnEUH1AvOmbNTZ1BRbKxr8DSgfdjMA==, + } modern-ahocorasick@1.1.0: - resolution: {integrity: sha512-sEKPVl2rM+MNVkGQt3ChdmD8YsigmXdn5NifZn6jiwn9LRJpWm8F3guhaqrJT/JOat6pwpbXEk6kv+b9DMIjsQ==} + resolution: + { + integrity: sha512-sEKPVl2rM+MNVkGQt3ChdmD8YsigmXdn5NifZn6jiwn9LRJpWm8F3guhaqrJT/JOat6pwpbXEk6kv+b9DMIjsQ==, + } motion-dom@11.16.0: - resolution: {integrity: sha512-4bmEwajSdrljzDAYpu6ceEdtI4J5PH25fmN8YSx7Qxk6OMrC10CXM0D5y+VO/pFZjhmCvm2bGf7Rus482kwhzA==} + resolution: + { + integrity: sha512-4bmEwajSdrljzDAYpu6ceEdtI4J5PH25fmN8YSx7Qxk6OMrC10CXM0D5y+VO/pFZjhmCvm2bGf7Rus482kwhzA==, + } motion-utils@11.16.0: - resolution: {integrity: sha512-ngdWPjg31rD4WGXFi0eZ00DQQqKKu04QExyv/ymlC+3k+WIgYVFbt6gS5JsFPbJODTF/r8XiE/X+SsoT9c0ocw==} + resolution: + { + integrity: sha512-ngdWPjg31rD4WGXFi0eZ00DQQqKKu04QExyv/ymlC+3k+WIgYVFbt6gS5JsFPbJODTF/r8XiE/X+SsoT9c0ocw==, + } mrmime@2.0.0: - resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==, + } + engines: { node: ">=10" } ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + resolution: + { + integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, + } ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + resolution: + { + integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==, + } mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + resolution: + { + integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==, + } nanoid@3.3.8: - resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + resolution: + { + integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + resolution: + { + integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, + } negotiator@0.6.4: - resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==, + } + engines: { node: ">= 0.6" } next-themes@0.4.4: - resolution: {integrity: sha512-LDQ2qIOJF0VnuVrrMSMLrWGjRMkq+0mpgl6e0juCLqdJ+oo8Q84JRWT6Wh11VDQKkMMe+dVzDKLWs5n87T+PkQ==} + resolution: + { + integrity: sha512-LDQ2qIOJF0VnuVrrMSMLrWGjRMkq+0mpgl6e0juCLqdJ+oo8Q84JRWT6Wh11VDQKkMMe+dVzDKLWs5n87T+PkQ==, + } peerDependencies: react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + resolution: + { + integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, + } node-addon-api@7.1.1: - resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} + resolution: + { + integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==, + } node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} + resolution: + { + integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==, + } + engines: { node: 4.x || >=6.0.0 } peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -6765,60 +10774,99 @@ packages: optional: true node-gyp-build-optional-packages@5.1.1: - resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==} + resolution: + { + integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==, + } hasBin: true node-gyp-build@4.8.4: - resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} + resolution: + { + integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==, + } hasBin: true node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + resolution: + { + integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, + } node-releases@2.0.19: - resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + resolution: + { + integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==, + } nopt@8.0.0: - resolution: {integrity: sha512-1L/fTJ4UmV/lUxT2Uf006pfZKTvAgCF+chz+0OgBHO8u2Z67pE7AaAUUj7CJy0lXqHmymUvGFt6NE9R3HER0yw==} - engines: {node: ^18.17.0 || >=20.5.0} + resolution: + { + integrity: sha512-1L/fTJ4UmV/lUxT2Uf006pfZKTvAgCF+chz+0OgBHO8u2Z67pE7AaAUUj7CJy0lXqHmymUvGFt6NE9R3HER0yw==, + } + engines: { node: ^18.17.0 || >=20.5.0 } hasBin: true normalize-path@2.1.1: - resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==, + } + engines: { node: ">=0.10.0" } normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, + } + engines: { node: ">=0.10.0" } normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==, + } + engines: { node: ">=0.10.0" } npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, + } + engines: { node: ">=8" } npm-run-path@5.3.0: - resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + resolution: + { + integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==, + } nullthrows@1.1.1: - resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} + resolution: + { + integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==, + } nuqs@2.3.0: - resolution: {integrity: sha512-ChS56bJZdaTQzCJb6jPel6cIHYh8/V/GSIjZoIe5yAssGdcrVaBFBgzHfJW6IewbR6yc1Zch2CmGsdgztR+xmA==} - peerDependencies: - '@remix-run/react': '>=2' - next: '>=14.2.0' - react: '>=18.2.0 || ^19.0.0-0' + resolution: + { + integrity: sha512-ChS56bJZdaTQzCJb6jPel6cIHYh8/V/GSIjZoIe5yAssGdcrVaBFBgzHfJW6IewbR6yc1Zch2CmGsdgztR+xmA==, + } + peerDependencies: + "@remix-run/react": ">=2" + next: ">=14.2.0" + react: ">=18.2.0 || ^19.0.0-0" react-router: ^7 react-router-dom: ^6 || ^7 peerDependenciesMeta: - '@remix-run/react': + "@remix-run/react": optional: true next: optional: true @@ -6828,252 +10876,441 @@ packages: optional: true object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, + } + engines: { node: ">=0.10.0" } object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==, + } + engines: { node: ">= 6" } object-inspect@1.13.3: - resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==, + } + engines: { node: ">= 0.4" } object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, + } + engines: { node: ">= 0.4" } object.assign@4.1.7: - resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==, + } + engines: { node: ">= 0.4" } object.fromentries@2.0.8: - resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==, + } + engines: { node: ">= 0.4" } object.groupby@1.0.3: - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==, + } + engines: { node: ">= 0.4" } object.values@1.2.1: - resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==, + } + engines: { node: ">= 0.4" } on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==, + } + engines: { node: ">= 0.8" } on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==, + } + engines: { node: ">= 0.8" } once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + resolution: + { + integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, + } onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, + } + engines: { node: ">=6" } onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, + } + engines: { node: ">=12" } oniguruma-to-es@0.10.0: - resolution: {integrity: sha512-zapyOUOCJxt+xhiNRPPMtfJkHGsZ98HHB9qJEkdT8BGytO/+kpe4m1Ngf0MzbzTmhacn11w9yGeDP6tzDhnCdg==} + resolution: + { + integrity: sha512-zapyOUOCJxt+xhiNRPPMtfJkHGsZ98HHB9qJEkdT8BGytO/+kpe4m1Ngf0MzbzTmhacn11w9yGeDP6tzDhnCdg==, + } open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==, + } + engines: { node: ">=12" } optionator@0.9.4: - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==, + } + engines: { node: ">= 0.8.0" } ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==, + } + engines: { node: ">=10" } ora@7.0.1: - resolution: {integrity: sha512-0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw==, + } + engines: { node: ">=16" } os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, + } + engines: { node: ">=0.10.0" } outdent@0.8.0: - resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==} + resolution: + { + integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==, + } own-keys@1.0.1: - resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==, + } + engines: { node: ">= 0.4" } ox@0.6.0: - resolution: {integrity: sha512-blUzTLidvUlshv0O02CnLFqBLidNzPoAZdIth894avUAotTuWziznv6IENv5idRuOSSP3dH8WzcYw84zVdu0Aw==} + resolution: + { + integrity: sha512-blUzTLidvUlshv0O02CnLFqBLidNzPoAZdIth894avUAotTuWziznv6IENv5idRuOSSP3dH8WzcYw84zVdu0Aw==, + } peerDependencies: - typescript: '>=5.4.0' + typescript: ">=5.4.0" peerDependenciesMeta: typescript: optional: true p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, + } + engines: { node: ">=6" } p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, + } + engines: { node: ">=10" } p-limit@5.0.0: - resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==, + } + engines: { node: ">=18" } p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, + } + engines: { node: ">=8" } p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, + } + engines: { node: ">=10" } p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==, + } + engines: { node: ">=10" } p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, + } + engines: { node: ">=6" } package-json-from-dist@1.0.1: - resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + resolution: + { + integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==, + } pako@2.1.0: - resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==} + resolution: + { + integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==, + } param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + resolution: + { + integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==, + } parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, + } + engines: { node: ">=6" } parse-entities@4.0.2: - resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==} + resolution: + { + integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==, + } parse-filepath@1.0.2: - resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==, + } + engines: { node: ">=0.8" } parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, + } + engines: { node: ">=8" } parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==, + } + engines: { node: ">= 0.8" } pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + resolution: + { + integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==, + } path-case@3.0.4: - resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} + resolution: + { + integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==, + } path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, + } + engines: { node: ">=8" } path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, + } + engines: { node: ">=0.10.0" } path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, + } + engines: { node: ">=8" } path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, + } + engines: { node: ">=12" } path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, + } path-root-regex@0.1.2: - resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==, + } + engines: { node: ">=0.10.0" } path-root@0.1.1: - resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==, + } + engines: { node: ">=0.10.0" } path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} + resolution: + { + integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, + } + engines: { node: ">=16 || 14 >=14.18" } path-to-regexp@6.1.0: - resolution: {integrity: sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==} + resolution: + { + integrity: sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==, + } path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, + } + engines: { node: ">=8" } pathe@1.1.2: - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + resolution: + { + integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==, + } pathval@1.1.1: - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + resolution: + { + integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==, + } pathval@2.0.0: - resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} - engines: {node: '>= 14.16'} + resolution: + { + integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==, + } + engines: { node: ">= 14.16" } picocolors@1.1.1: - resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + resolution: + { + integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==, + } picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: { node: ">=8.6" } picomatch@4.0.2: - resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==, + } + engines: { node: ">=12" } pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==, + } + engines: { node: ">=0.10.0" } pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==, + } + engines: { node: ">= 6" } pkg-types@1.3.0: - resolution: {integrity: sha512-kS7yWjVFCkIw9hqdJBoMxDdzEngmkr5FXeWZZfQ6GoYacjVnsW6l2CcYW/0ThD0vF4LPJgVYnrg4d0uuhwYQbg==} + resolution: + { + integrity: sha512-kS7yWjVFCkIw9hqdJBoMxDdzEngmkr5FXeWZZfQ6GoYacjVnsW6l2CcYW/0ThD0vF4LPJgVYnrg4d0uuhwYQbg==, + } polished@4.3.1: - resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==, + } + engines: { node: ">=10" } possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==, + } + engines: { node: ">= 0.4" } postcss-import@15.1.0: - resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==, + } + engines: { node: ">=14.0.0" } peerDependencies: postcss: ^8.0.0 postcss-js@4.0.1: - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} - engines: {node: ^12 || ^14 || >= 16} + resolution: + { + integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==, + } + engines: { node: ^12 || ^14 || >= 16 } peerDependencies: postcss: ^8.4.21 postcss-load-config@4.0.2: - resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} - engines: {node: '>= 14'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' + resolution: + { + integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==, + } + engines: { node: ">= 14" } + peerDependencies: + postcss: ">=8.0.9" + ts-node: ">=9.0.0" peerDependenciesMeta: postcss: optional: true @@ -7081,11 +11318,14 @@ packages: optional: true postcss-load-config@6.0.1: - resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} - engines: {node: '>= 18'} - peerDependencies: - jiti: '>=1.21.0' - postcss: '>=8.0.9' + resolution: + { + integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==, + } + engines: { node: ">= 18" } + peerDependencies: + jiti: ">=1.21.0" + postcss: ">=8.0.9" tsx: ^4.8.1 yaml: ^2.4.2 peerDependenciesMeta: @@ -7099,148 +11339,253 @@ packages: optional: true postcss-nested@6.2.0: - resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} - engines: {node: '>=12.0'} + resolution: + { + integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==, + } + engines: { node: ">=12.0" } peerDependencies: postcss: ^8.2.14 postcss-selector-parser@6.0.10: - resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==, + } + engines: { node: ">=4" } postcss-selector-parser@6.1.2: - resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==, + } + engines: { node: ">=4" } postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + resolution: + { + integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, + } postcss@8.4.49: - resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==, + } + engines: { node: ^10 || ^12 || >=14 } postprocessing@6.36.6: - resolution: {integrity: sha512-mjJjoXbC97XMV6iQVhOZYNjD5X93o3+/zpYm9oRmsyjP3LjfwedT8PgusECTk+s5DZeZoJ8vA9htdWuH8JH+mQ==} + resolution: + { + integrity: sha512-mjJjoXbC97XMV6iQVhOZYNjD5X93o3+/zpYm9oRmsyjP3LjfwedT8PgusECTk+s5DZeZoJ8vA9htdWuH8JH+mQ==, + } peerDependencies: - three: '>= 0.157.0 < 0.173.0' + three: ">= 0.157.0 < 0.173.0" potpack@1.0.2: - resolution: {integrity: sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==} + resolution: + { + integrity: sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==, + } prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, + } + engines: { node: ">= 0.8.0" } prettier@3.4.2: - resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==, + } + engines: { node: ">=14" } hasBin: true pretty-bytes@5.6.0: - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==, + } + engines: { node: ">=6" } pretty-bytes@6.1.1: - resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==} - engines: {node: ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==, + } + engines: { node: ^14.13.1 || >=16.0.0 } pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} + resolution: + { + integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, + } + engines: { node: ">= 0.6.0" } promise@7.3.1: - resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + resolution: + { + integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==, + } prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + resolution: + { + integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, + } property-information@6.5.0: - resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + resolution: + { + integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==, + } proxy-deep@3.1.1: - resolution: {integrity: sha512-kppbvLUNJ4IOMZds9/4gz/rtT5OFiesy3XosLsgMKlF3vb6GA5Y3ptyDlzKLcOcUBW+zaY+RiMINTsgE+O6e+Q==} + resolution: + { + integrity: sha512-kppbvLUNJ4IOMZds9/4gz/rtT5OFiesy3XosLsgMKlF3vb6GA5Y3ptyDlzKLcOcUBW+zaY+RiMINTsgE+O6e+Q==, + } proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + resolution: + { + integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, + } punycode.js@2.3.1: - resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==, + } + engines: { node: ">=6" } punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==, + } + engines: { node: ">=6" } query-string@7.1.3: - resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==, + } + engines: { node: ">=6" } queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + } randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + resolution: + { + integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, + } range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==, + } + engines: { node: ">= 0.6" } react-colorful@5.6.1: - resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} + resolution: + { + integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==, + } peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + react: ">=16.8.0" + react-dom: ">=16.8.0" react-confetti@6.2.2: - resolution: {integrity: sha512-K+kTyOPgX+ZujMZ+Rmb7pZdHBvg+DzinG/w4Eh52WOB8/pfO38efnnrtEZNJmjTvLxc16RBYO+tPM68Fg8viBA==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-K+kTyOPgX+ZujMZ+Rmb7pZdHBvg+DzinG/w4Eh52WOB8/pfO38efnnrtEZNJmjTvLxc16RBYO+tPM68Fg8viBA==, + } + engines: { node: ">=16" } peerDependencies: react: ^16.3.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 react-docgen-typescript@2.2.2: - resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} + resolution: + { + integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==, + } peerDependencies: - typescript: '>= 4.3.x' + typescript: ">= 4.3.x" react-docgen@7.1.0: - resolution: {integrity: sha512-APPU8HB2uZnpl6Vt/+0AFoVYgSRtfiP6FLrZgPPTDmqSb2R4qZRbgd0A3VzIFxDt5e+Fozjx79WjLWnF69DK8g==} - engines: {node: '>=16.14.0'} + resolution: + { + integrity: sha512-APPU8HB2uZnpl6Vt/+0AFoVYgSRtfiP6FLrZgPPTDmqSb2R4qZRbgd0A3VzIFxDt5e+Fozjx79WjLWnF69DK8g==, + } + engines: { node: ">=16.14.0" } react-dom@18.3.1: - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + resolution: + { + integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==, + } peerDependencies: react: ^18.3.1 react-draggable@4.4.6: - resolution: {integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==} + resolution: + { + integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw==, + } peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' + react: ">= 16.3.0" + react-dom: ">= 16.3.0" react-dropzone@12.1.0: - resolution: {integrity: sha512-iBYHA1rbopIvtzokEX4QubO6qk5IF/x3BtKGu74rF2JkQDXnwC4uO/lHKpaw4PJIV6iIAYOlwLv2FpiGyqHNog==} - engines: {node: '>= 10.13'} + resolution: + { + integrity: sha512-iBYHA1rbopIvtzokEX4QubO6qk5IF/x3BtKGu74rF2JkQDXnwC4uO/lHKpaw4PJIV6iIAYOlwLv2FpiGyqHNog==, + } + engines: { node: ">= 10.13" } peerDependencies: - react: '>= 16.8' + react: ">= 16.8" react-fast-compare@3.2.2: - resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} + resolution: + { + integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==, + } react-helmet@6.1.0: - resolution: {integrity: sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==} + resolution: + { + integrity: sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==, + } peerDependencies: - react: '>=16.3.0' + react: ">=16.3.0" react-intersection-observer@9.14.1: - resolution: {integrity: sha512-k1xIUn3sCQi3ugNeF64FJb3zwve5mcetvAUR9JazXeOmtap4IP2evN8rs+yf6SQ7F1QydsOGiqTmt+lySKZ9uA==} + resolution: + { + integrity: sha512-k1xIUn3sCQi3ugNeF64FJb3zwve5mcetvAUR9JazXeOmtap4IP2evN8rs+yf6SQ7F1QydsOGiqTmt+lySKZ9uA==, + } peerDependencies: react: ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 @@ -7249,503 +11594,896 @@ packages: optional: true react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + resolution: + { + integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, + } react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + resolution: + { + integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, + } react-is@18.3.1: - resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + resolution: + { + integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==, + } react-refresh@0.14.2: - resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==, + } + engines: { node: ">=0.10.0" } react-remove-scroll-bar@2.3.8: - resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==, + } + engines: { node: ">=10" } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true react-remove-scroll@2.5.5: - resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==, + } + engines: { node: ">=10" } peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true react-remove-scroll@2.6.2: - resolution: {integrity: sha512-KmONPx5fnlXYJQqC62Q+lwIeAk64ws/cUw6omIumRzMRPqgnYqhSSti99nbj0Ry13bv7dF+BKn7NB+OqkdZGTw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-KmONPx5fnlXYJQqC62Q+lwIeAk64ws/cUw6omIumRzMRPqgnYqhSSti99nbj0Ry13bv7dF+BKn7NB+OqkdZGTw==, + } + engines: { node: ">=10" } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true react-router-dom@6.28.1: - resolution: {integrity: sha512-YraE27C/RdjcZwl5UCqF/ffXnZDxpJdk9Q6jw38SZHjXs7NNdpViq2l2c7fO7+4uWaEfcwfGCv3RSg4e1By/fQ==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-YraE27C/RdjcZwl5UCqF/ffXnZDxpJdk9Q6jw38SZHjXs7NNdpViq2l2c7fO7+4uWaEfcwfGCv3RSg4e1By/fQ==, + } + engines: { node: ">=14.0.0" } peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' + react: ">=16.8" + react-dom: ">=16.8" react-router@6.28.1: - resolution: {integrity: sha512-2omQTA3rkMljmrvvo6WtewGdVh45SpL9hGiCI9uUrwGGfNFDIvGK4gYJsKlJoNVi6AQZcopSCballL+QGOm7fA==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-2omQTA3rkMljmrvvo6WtewGdVh45SpL9hGiCI9uUrwGGfNFDIvGK4gYJsKlJoNVi6AQZcopSCballL+QGOm7fA==, + } + engines: { node: ">=14.0.0" } peerDependencies: - react: '>=16.8' + react: ">=16.8" react-shepherd@6.1.6: - resolution: {integrity: sha512-tAlrgFh7mTZ9zDXdE7gpIZZjFpimk4ad++g7BeoBSAS9x+nN5g1XQMH2fRZuGcFHAR9cQDCRgO6sbwJ1jmOLJA==} + resolution: + { + integrity: sha512-tAlrgFh7mTZ9zDXdE7gpIZZjFpimk4ad++g7BeoBSAS9x+nN5g1XQMH2fRZuGcFHAR9cQDCRgO6sbwJ1jmOLJA==, + } peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 typescript: ^5.0.0 react-side-effect@2.1.2: - resolution: {integrity: sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==} + resolution: + { + integrity: sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==, + } peerDependencies: react: ^16.3.0 || ^17.0.0 || ^18.0.0 react-style-singleton@2.2.3: - resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==, + } + engines: { node: ">=10" } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==, + } + engines: { node: ">=0.10.0" } read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + resolution: + { + integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==, + } readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, + } + engines: { node: ">= 6" } readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + resolution: + { + integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, + } + engines: { node: ">=8.10.0" } readdirp@4.0.2: - resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} - engines: {node: '>= 14.16.0'} + resolution: + { + integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==, + } + engines: { node: ">= 14.16.0" } recast@0.23.9: - resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==, + } + engines: { node: ">= 4" } recma-build-jsx@1.0.0: - resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==} + resolution: + { + integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==, + } recma-jsx@1.0.0: - resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==} + resolution: + { + integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==, + } recma-parse@1.0.0: - resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==} + resolution: + { + integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==, + } recma-stringify@1.0.0: - resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==} + resolution: + { + integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==, + } redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, + } + engines: { node: ">=8" } redeyed@2.1.1: - resolution: {integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==} + resolution: + { + integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==, + } reflect.getprototypeof@1.0.10: - resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==, + } + engines: { node: ">= 0.4" } regenerate-unicode-properties@10.2.0: - resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==, + } + engines: { node: ">=4" } regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + resolution: + { + integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, + } regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + resolution: + { + integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, + } regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + resolution: + { + integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, + } regex-recursion@5.1.1: - resolution: {integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==} + resolution: + { + integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==, + } regex-utilities@2.3.0: - resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} + resolution: + { + integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==, + } regex@5.1.1: - resolution: {integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==} + resolution: + { + integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==, + } regexp.prototype.flags@1.5.4: - resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==, + } + engines: { node: ">= 0.4" } regexpu-core@6.2.0: - resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==, + } + engines: { node: ">=4" } regjsgen@0.8.0: - resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} + resolution: + { + integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==, + } regjsparser@0.12.0: - resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} + resolution: + { + integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==, + } hasBin: true rehype-autolink-headings@7.1.0: - resolution: {integrity: sha512-rItO/pSdvnvsP4QRB1pmPiNHUskikqtPojZKJPPPAVx9Hj8i8TwMBhofrrAYRhYOOBZH9tgmG5lPqDLuIWPWmw==} + resolution: + { + integrity: sha512-rItO/pSdvnvsP4QRB1pmPiNHUskikqtPojZKJPPPAVx9Hj8i8TwMBhofrrAYRhYOOBZH9tgmG5lPqDLuIWPWmw==, + } rehype-class-names@1.0.14: - resolution: {integrity: sha512-eFBt6Qxb7K77y6P82tUtN9rKpU7guWlaK4XA4RrrSFHkUTCvr2D3cgb9OR5d4t1AaGOvR59FH9nRwUnbpn9AEg==} + resolution: + { + integrity: sha512-eFBt6Qxb7K77y6P82tUtN9rKpU7guWlaK4XA4RrrSFHkUTCvr2D3cgb9OR5d4t1AaGOvR59FH9nRwUnbpn9AEg==, + } rehype-recma@1.0.0: - resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==} + resolution: + { + integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==, + } rehype-slug@6.0.0: - resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==} + resolution: + { + integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==, + } relay-runtime@12.0.0: - resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} + resolution: + { + integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==, + } remark-directive@3.0.0: - resolution: {integrity: sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==} + resolution: + { + integrity: sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==, + } remark-frontmatter@5.0.0: - resolution: {integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==} + resolution: + { + integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==, + } remark-gfm@4.0.0: - resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} + resolution: + { + integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==, + } remark-mdx-frontmatter@4.0.0: - resolution: {integrity: sha512-PZzAiDGOEfv1Ua7exQ8S5kKxkD8CDaSb4nM+1Mprs6u8dyvQifakh+kCj6NovfGXW+bTvrhjaR3srzjS2qJHKg==} + resolution: + { + integrity: sha512-PZzAiDGOEfv1Ua7exQ8S5kKxkD8CDaSb4nM+1Mprs6u8dyvQifakh+kCj6NovfGXW+bTvrhjaR3srzjS2qJHKg==, + } remark-mdx@3.1.0: - resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==} + resolution: + { + integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==, + } remark-parse@11.0.0: - resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + resolution: + { + integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==, + } remark-rehype@11.1.1: - resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==} + resolution: + { + integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==, + } remark-stringify@11.0.0: - resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + resolution: + { + integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==, + } remedial@1.0.8: - resolution: {integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==} + resolution: + { + integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==, + } remove-trailing-separator@1.1.0: - resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + resolution: + { + integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==, + } remove-trailing-spaces@1.0.8: - resolution: {integrity: sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==} + resolution: + { + integrity: sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==, + } require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, + } + engines: { node: ">=0.10.0" } require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, + } + engines: { node: ">=0.10.0" } require-like@0.1.2: - resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==} + resolution: + { + integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==, + } require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + resolution: + { + integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, + } resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, + } + engines: { node: ">=4" } resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, + } + engines: { node: ">=8" } resolve-pkg-maps@1.0.0: - resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + resolution: + { + integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==, + } resolve@1.22.10: - resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==, + } + engines: { node: ">= 0.4" } hasBin: true restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, + } + engines: { node: ">=8" } restore-cursor@4.0.0: - resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, + } + engines: { iojs: ">=1.0.0", node: ">=0.10.0" } rfdc@1.4.1: - resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + resolution: + { + integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==, + } rimraf@5.0.10: - resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} + resolution: + { + integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==, + } hasBin: true rollup@2.79.2: - resolution: {integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==, + } + engines: { node: ">=10.0.0" } hasBin: true rollup@4.30.1: - resolution: {integrity: sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} + resolution: + { + integrity: sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==, + } + engines: { node: ">=18.0.0", npm: ">=8.0.0" } hasBin: true run-async@2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==, + } + engines: { node: ">=0.12.0" } run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, + } rxjs@7.5.5: - resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==} + resolution: + { + integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==, + } rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + resolution: + { + integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, + } safe-array-concat@1.1.3: - resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==, + } + engines: { node: ">=0.4" } safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + resolution: + { + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, + } safe-push-apply@1.0.0: - resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==, + } + engines: { node: ">= 0.4" } safe-regex-test@1.1.0: - resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==, + } + engines: { node: ">= 0.4" } safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, + } scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + resolution: + { + integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, + } scuid@1.1.0: - resolution: {integrity: sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==} + resolution: + { + integrity: sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==, + } seedrandom@3.0.5: - resolution: {integrity: sha512-8OwmbklUNzwezjGInmZ+2clQmExQPvomqjL7LFqOYqtmuxRgQYqOD3mHaU+MvZn5FLUeVxVfQjwLZW/n/JFuqg==} + resolution: + { + integrity: sha512-8OwmbklUNzwezjGInmZ+2clQmExQPvomqjL7LFqOYqtmuxRgQYqOD3mHaU+MvZn5FLUeVxVfQjwLZW/n/JFuqg==, + } semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + resolution: + { + integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, + } hasBin: true semver@7.6.3: - resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==, + } + engines: { node: ">=10" } hasBin: true send@0.19.0: - resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==, + } + engines: { node: ">= 0.8.0" } sentence-case@3.0.4: - resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} + resolution: + { + integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==, + } serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + resolution: + { + integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==, + } serve-static@1.16.2: - resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==, + } + engines: { node: ">= 0.8.0" } set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + resolution: + { + integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, + } set-cookie-parser@2.7.1: - resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==} + resolution: + { + integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==, + } set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==, + } + engines: { node: ">= 0.4" } set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==, + } + engines: { node: ">= 0.4" } set-proto@1.0.0: - resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==, + } + engines: { node: ">= 0.4" } set-value@2.0.1: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==, + } + engines: { node: ">=0.10.0" } setimmediate@1.0.5: - resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} + resolution: + { + integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==, + } setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + resolution: + { + integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, + } shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, + } + engines: { node: ">=8" } shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, + } + engines: { node: ">=8" } shell-quote@1.8.2: - resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==, + } + engines: { node: ">= 0.4" } shepherd.js@14.3.0: - resolution: {integrity: sha512-m73/+dkcPotaGfCnzLJtWJtY7TYSiyeXQ5uRIFs+Ed5HD7kw9tX8vlFbgF6yJ7H5N3z27/i5H3hBWlTw64PeXA==} - engines: {node: 18.* || >= 20} + resolution: + { + integrity: sha512-m73/+dkcPotaGfCnzLJtWJtY7TYSiyeXQ5uRIFs+Ed5HD7kw9tX8vlFbgF6yJ7H5N3z27/i5H3hBWlTw64PeXA==, + } + engines: { node: 18.* || >= 20 } shiki@1.26.1: - resolution: {integrity: sha512-Gqg6DSTk3wYqaZ5OaYtzjcdxcBvX5kCy24yvRJEgjT5U+WHlmqCThLuBUx0juyxQBi+6ug53IGeuQS07DWwpcw==} + resolution: + { + integrity: sha512-Gqg6DSTk3wYqaZ5OaYtzjcdxcBvX5kCy24yvRJEgjT5U+WHlmqCThLuBUx0juyxQBi+6ug53IGeuQS07DWwpcw==, + } side-channel-list@1.0.0: - resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==, + } + engines: { node: ">= 0.4" } side-channel-map@1.0.1: - resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==, + } + engines: { node: ">= 0.4" } side-channel-weakmap@1.0.2: - resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==, + } + engines: { node: ">= 0.4" } side-channel@1.1.0: - resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==, + } + engines: { node: ">= 0.4" } siginfo@2.0.0: - resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + resolution: + { + integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==, + } signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + resolution: + { + integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, + } signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, + } + engines: { node: ">=14" } signedsource@1.0.0: - resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==} + resolution: + { + integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==, + } sirv@3.0.0: - resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==, + } + engines: { node: ">=18" } sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + resolution: + { + integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, + } slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, + } + engines: { node: ">=8" } slash@4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==, + } + engines: { node: ">=12" } slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==, + } + engines: { node: ">=8" } slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==, + } + engines: { node: ">=10" } smob@1.5.0: - resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==} + resolution: + { + integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==, + } snake-case@3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + resolution: + { + integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==, + } sonner@1.7.1: - resolution: {integrity: sha512-b6LHBfH32SoVasRFECrdY8p8s7hXPDn3OHUFbZZbiB1ctLS9Gdh6rpX2dVrpQA0kiL5jcRzDDldwwLkSKk3+QQ==} + resolution: + { + integrity: sha512-b6LHBfH32SoVasRFECrdY8p8s7hXPDn3OHUFbZZbiB1ctLS9Gdh6rpX2dVrpQA0kiL5jcRzDDldwwLkSKk3+QQ==, + } peerDependencies: react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc source-map-js@1.2.1: - resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, + } + engines: { node: ">=0.10.0" } source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + resolution: + { + integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, + } source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, + } + engines: { node: ">=0.10.0" } source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==, + } + engines: { node: ">= 8" } source-map@0.8.0-beta.0: - resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==, + } + engines: { node: ">= 8" } sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + resolution: + { + integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, + } deprecated: Please use @jridgewell/sourcemap-codec instead space-separated-tokens@2.0.2: - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + resolution: + { + integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==, + } split-on-first@1.1.0: - resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==, + } + engines: { node: ">=6" } split-string@3.1.0: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==, + } + engines: { node: ">=0.10.0" } sponge-case@1.0.1: - resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==} + resolution: + { + integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==, + } stackback@0.0.2: - resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + resolution: + { + integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==, + } starknet@6.11.0: - resolution: {integrity: sha512-u50KrGDi9fbu1Ogu7ynwF/tSeFlp3mzOg1/Y5x50tYFICImo3OfY4lOz9OtYDk404HK4eUujKkhov9tG7GAKlg==} + resolution: + { + integrity: sha512-u50KrGDi9fbu1Ogu7ynwF/tSeFlp3mzOg1/Y5x50tYFICImo3OfY4lOz9OtYDk404HK4eUujKkhov9tG7GAKlg==, + } statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==, + } + engines: { node: ">= 0.8" } std-env@3.8.0: - resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} + resolution: + { + integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==, + } stdin-discarder@0.1.0: - resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } storybook@8.4.7: - resolution: {integrity: sha512-RP/nMJxiWyFc8EVMH5gp20ID032Wvk+Yr3lmKidoegto5Iy+2dVQnUoElZb2zpbVXNHWakGuAkfI0dY1Hfp/vw==} + resolution: + { + integrity: sha512-RP/nMJxiWyFc8EVMH5gp20ID032Wvk+Yr3lmKidoegto5Iy+2dVQnUoElZb2zpbVXNHWakGuAkfI0dY1Hfp/vw==, + } hasBin: true peerDependencies: prettier: ^2 || ^3 @@ -7754,321 +12492,567 @@ packages: optional: true streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, + } + engines: { node: ">=10.0.0" } strict-uri-encode@2.0.0: - resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==, + } + engines: { node: ">=4" } string-env-interpolation@1.0.1: - resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==} + resolution: + { + integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==, + } string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, + } + engines: { node: ">=8" } string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, + } + engines: { node: ">=12" } string-width@6.1.0: - resolution: {integrity: sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==, + } + engines: { node: ">=16" } string.prototype.matchall@4.0.12: - resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==, + } + engines: { node: ">= 0.4" } string.prototype.trim@1.2.10: - resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==, + } + engines: { node: ">= 0.4" } string.prototype.trimend@1.0.9: - resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==, + } + engines: { node: ">= 0.4" } string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==, + } + engines: { node: ">= 0.4" } string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + resolution: + { + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, + } stringify-entities@4.0.4: - resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + resolution: + { + integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==, + } stringify-object@3.3.0: - resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==, + } + engines: { node: ">=4" } strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, + } + engines: { node: ">=8" } strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==, + } + engines: { node: ">=12" } strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, + } + engines: { node: ">=4" } strip-comments@2.0.1: - resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==, + } + engines: { node: ">=10" } strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, + } + engines: { node: ">=6" } strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, + } + engines: { node: ">=12" } strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, + } + engines: { node: ">=8" } strip-indent@4.0.0: - resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==, + } + engines: { node: ">=12" } strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, + } + engines: { node: ">=8" } strip-literal@2.1.1: - resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==} + resolution: + { + integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==, + } style-to-object@1.0.8: - resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==} + resolution: + { + integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==, + } sucrase@3.35.0: - resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==, + } + engines: { node: ">=16 || 14 >=14.17" } hasBin: true supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, + } + engines: { node: ">=8" } supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, + } + engines: { node: ">= 0.4" } svg-parser@2.0.4: - resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + resolution: + { + integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==, + } svgo@3.3.2: - resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==, + } + engines: { node: ">=14.0.0" } hasBin: true swap-case@2.0.2: - resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} + resolution: + { + integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==, + } tabbable@6.2.0: - resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} + resolution: + { + integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==, + } tailwind-merge@2.6.0: - resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==} + resolution: + { + integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==, + } tailwindcss-animate@1.0.7: - resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} + resolution: + { + integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==, + } peerDependencies: - tailwindcss: '>=3.0.0 || insiders' + tailwindcss: ">=3.0.0 || insiders" tailwindcss@3.4.17: - resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==, + } + engines: { node: ">=14.0.0" } hasBin: true tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, + } + engines: { node: ">=6" } tar@7.4.3: - resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==, + } + engines: { node: ">=18" } temp-dir@2.0.0: - resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==, + } + engines: { node: ">=8" } tempy@0.6.0: - resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==, + } + engines: { node: ">=10" } terser@5.37.0: - resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==, + } + engines: { node: ">=10" } hasBin: true test-exclude@7.0.1: - resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==, + } + engines: { node: ">=18" } thenify-all@1.6.0: - resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==, + } + engines: { node: ">=0.8" } thenify@3.3.1: - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + resolution: + { + integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==, + } three-stdlib@2.35.2: - resolution: {integrity: sha512-Ns9ZdiFEAsiv8JvHS28Qgxg4YRTq13Ixa4EDUQZhUovZ3j/GLTou4zE887SLSqsuRZwuy3gklttn2ha5JaJpTQ==} + resolution: + { + integrity: sha512-Ns9ZdiFEAsiv8JvHS28Qgxg4YRTq13Ixa4EDUQZhUovZ3j/GLTou4zE887SLSqsuRZwuy3gklttn2ha5JaJpTQ==, + } peerDependencies: - three: '>=0.128.0' + three: ">=0.128.0" three@0.166.1: - resolution: {integrity: sha512-LtuafkKHHzm61AQA1be2MAYIw1IjmhOUxhBa0prrLpEMWbV7ijvxCRHjSgHPGp2493wLBzwKV46tA9nivLEgKg==} + resolution: + { + integrity: sha512-LtuafkKHHzm61AQA1be2MAYIw1IjmhOUxhBa0prrLpEMWbV7ijvxCRHjSgHPGp2493wLBzwKV46tA9nivLEgKg==, + } through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, + } tiny-emitter@2.1.0: - resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==} + resolution: + { + integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==, + } tiny-invariant@1.3.3: - resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} + resolution: + { + integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==, + } tiny-warning@1.0.3: - resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} + resolution: + { + integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==, + } tinybench@2.9.0: - resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + resolution: + { + integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==, + } tinyexec@0.3.2: - resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + resolution: + { + integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==, + } tinyglobby@0.2.10: - resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==, + } + engines: { node: ">=12.0.0" } tinypool@0.8.4: - resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==, + } + engines: { node: ">=14.0.0" } tinypool@1.0.2: - resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} - engines: {node: ^18.0.0 || >=20.0.0} + resolution: + { + integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==, + } + engines: { node: ^18.0.0 || >=20.0.0 } tinyrainbow@1.2.0: - resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==, + } + engines: { node: ">=14.0.0" } tinyspy@2.2.1: - resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==, + } + engines: { node: ">=14.0.0" } tinyspy@3.0.2: - resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==, + } + engines: { node: ">=14.0.0" } title-case@3.0.3: - resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} + resolution: + { + integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==, + } tldts-core@6.1.71: - resolution: {integrity: sha512-LRbChn2YRpic1KxY+ldL1pGXN/oVvKfCVufwfVzEQdFYNo39uF7AJa/WXdo+gYO7PTvdfkCPCed6Hkvz/kR7jg==} + resolution: + { + integrity: sha512-LRbChn2YRpic1KxY+ldL1pGXN/oVvKfCVufwfVzEQdFYNo39uF7AJa/WXdo+gYO7PTvdfkCPCed6Hkvz/kR7jg==, + } tldts@6.1.71: - resolution: {integrity: sha512-LQIHmHnuzfZgZWAf2HzL83TIIrD8NhhI0DVxqo9/FdOd4ilec+NTNZOlDZf7EwrTNoutccbsHjvWHYXLAtvxjw==} + resolution: + { + integrity: sha512-LQIHmHnuzfZgZWAf2HzL83TIIrD8NhhI0DVxqo9/FdOd4ilec+NTNZOlDZf7EwrTNoutccbsHjvWHYXLAtvxjw==, + } hasBin: true tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + resolution: + { + integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, + } + engines: { node: ">=0.6.0" } to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, + } + engines: { node: ">=8.0" } toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, + } + engines: { node: ">=0.6" } toml@3.0.0: - resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==} + resolution: + { + integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==, + } totalist@3.0.1: - resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==, + } + engines: { node: ">=6" } tough-cookie@5.0.0: - resolution: {integrity: sha512-FRKsF7cz96xIIeMZ82ehjC3xW2E+O2+v11udrDYewUbszngYhsGa8z6YUMMzO9QJZzzyd0nGGXnML/TReX6W8Q==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-FRKsF7cz96xIIeMZ82ehjC3xW2E+O2+v11udrDYewUbszngYhsGa8z6YUMMzO9QJZzzyd0nGGXnML/TReX6W8Q==, + } + engines: { node: ">=16" } tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + resolution: + { + integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, + } tr46@1.0.1: - resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} + resolution: + { + integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==, + } tree-kill@1.2.2: - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} + resolution: + { + integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==, + } hasBin: true trim-lines@3.0.1: - resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + resolution: + { + integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==, + } trough@2.2.0: - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + resolution: + { + integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==, + } ts-api-utils@1.4.3: - resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==, + } + engines: { node: ">=16" } peerDependencies: - typescript: '>=4.2.0' + typescript: ">=4.2.0" ts-api-utils@2.0.0: - resolution: {integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==} - engines: {node: '>=18.12'} + resolution: + { + integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==, + } + engines: { node: ">=18.12" } peerDependencies: - typescript: '>=4.8.4' + typescript: ">=4.8.4" ts-dedent@2.2.0: - resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} - engines: {node: '>=6.10'} + resolution: + { + integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==, + } + engines: { node: ">=6.10" } ts-interface-checker@0.1.13: - resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + resolution: + { + integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==, + } ts-log@2.2.7: - resolution: {integrity: sha512-320x5Ggei84AxzlXp91QkIGSw5wgaLT6GeAH0KsqDmRZdVWW2OiSeVvElVoatk3f7nicwXlElXsoFkARiGE2yg==} + resolution: + { + integrity: sha512-320x5Ggei84AxzlXp91QkIGSw5wgaLT6GeAH0KsqDmRZdVWW2OiSeVvElVoatk3f7nicwXlElXsoFkARiGE2yg==, + } ts-mixer@6.0.4: - resolution: {integrity: sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==} + resolution: + { + integrity: sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==, + } tsconfig-paths@3.15.0: - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + resolution: + { + integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==, + } tsconfig-paths@4.2.0: - resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==, + } + engines: { node: ">=6" } tslib@2.4.1: - resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} + resolution: + { + integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==, + } tslib@2.6.3: - resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} + resolution: + { + integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==, + } tslib@2.8.1: - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + resolution: + { + integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==, + } tsup@8.3.5: - resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==, + } + engines: { node: ">=18" } hasBin: true peerDependencies: - '@microsoft/api-extractor': ^7.36.0 - '@swc/core': ^1 + "@microsoft/api-extractor": ^7.36.0 + "@swc/core": ^1 postcss: ^8.4.12 - typescript: '>=4.5.0' + typescript: ">=4.5.0" peerDependenciesMeta: - '@microsoft/api-extractor': + "@microsoft/api-extractor": optional: true - '@swc/core': + "@swc/core": optional: true postcss: optional: true @@ -8076,350 +13060,578 @@ packages: optional: true tsx@4.19.2: - resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==} - engines: {node: '>=18.0.0'} + resolution: + { + integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==, + } + engines: { node: ">=18.0.0" } hasBin: true tween-functions@1.2.0: - resolution: {integrity: sha512-PZBtLYcCLtEcjL14Fzb1gSxPBeL7nWvGhO5ZFPGqziCcr8uvHp0NDmdjBchp6KHL+tExcg0m3NISmKxhU394dA==} + resolution: + { + integrity: sha512-PZBtLYcCLtEcjL14Fzb1gSxPBeL7nWvGhO5ZFPGqziCcr8uvHp0NDmdjBchp6KHL+tExcg0m3NISmKxhU394dA==, + } twoslash-protocol@0.2.12: - resolution: {integrity: sha512-5qZLXVYfZ9ABdjqbvPc4RWMr7PrpPaaDSeaYY55vl/w1j6H6kzsWK/urAEIXlzYlyrFmyz1UbwIt+AA0ck+wbg==} + resolution: + { + integrity: sha512-5qZLXVYfZ9ABdjqbvPc4RWMr7PrpPaaDSeaYY55vl/w1j6H6kzsWK/urAEIXlzYlyrFmyz1UbwIt+AA0ck+wbg==, + } twoslash@0.2.12: - resolution: {integrity: sha512-tEHPASMqi7kqwfJbkk7hc/4EhlrKCSLcur+TcvYki3vhIfaRMXnXjaYFgXpoZRbT6GdprD4tGuVBEmTpUgLBsw==} + resolution: + { + integrity: sha512-tEHPASMqi7kqwfJbkk7hc/4EhlrKCSLcur+TcvYki3vhIfaRMXnXjaYFgXpoZRbT6GdprD4tGuVBEmTpUgLBsw==, + } peerDependencies: - typescript: '*' + typescript: "*" type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, + } + engines: { node: ">= 0.8.0" } type-detect@4.1.0: - resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==, + } + engines: { node: ">=4" } type-fest@0.16.0: - resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==, + } + engines: { node: ">=10" } type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, + } + engines: { node: ">=10" } type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==, + } + engines: { node: ">=12.20" } typed-array-buffer@1.0.3: - resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==, + } + engines: { node: ">= 0.4" } typed-array-byte-length@1.0.3: - resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==, + } + engines: { node: ">= 0.4" } typed-array-byte-offset@1.0.4: - resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==, + } + engines: { node: ">= 0.4" } typed-array-length@1.0.7: - resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==, + } + engines: { node: ">= 0.4" } typed-function@4.2.1: - resolution: {integrity: sha512-EGjWssW7Tsk4DGfE+5yluuljS1OGYWiI1J6e8puZz9nTMM51Oug8CD5Zo4gWMsOhq5BI+1bF+rWTm4Vbj3ivRA==} - engines: {node: '>= 18'} + resolution: + { + integrity: sha512-EGjWssW7Tsk4DGfE+5yluuljS1OGYWiI1J6e8puZz9nTMM51Oug8CD5Zo4gWMsOhq5BI+1bF+rWTm4Vbj3ivRA==, + } + engines: { node: ">= 18" } typedoc-plugin-markdown@4.4.1: - resolution: {integrity: sha512-fx23nSCvewI9IR8lzIYtzDphETcgTDuxKcmHKGD4lo36oexC+B1k4NaCOY58Snqb4OlE8OXDAGVcQXYYuLRCNw==} - engines: {node: '>= 18'} + resolution: + { + integrity: sha512-fx23nSCvewI9IR8lzIYtzDphETcgTDuxKcmHKGD4lo36oexC+B1k4NaCOY58Snqb4OlE8OXDAGVcQXYYuLRCNw==, + } + engines: { node: ">= 18" } peerDependencies: typedoc: 0.27.x typedoc@0.26.11: - resolution: {integrity: sha512-sFEgRRtrcDl2FxVP58Ze++ZK2UQAEvtvvH8rRlig1Ja3o7dDaMHmaBfvJmdGnNEFaLTpQsN8dpvZaTqJSu/Ugw==} - engines: {node: '>= 18'} + resolution: + { + integrity: sha512-sFEgRRtrcDl2FxVP58Ze++ZK2UQAEvtvvH8rRlig1Ja3o7dDaMHmaBfvJmdGnNEFaLTpQsN8dpvZaTqJSu/Ugw==, + } + engines: { node: ">= 18" } hasBin: true peerDependencies: typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x typescript-eslint@8.19.1: - resolution: {integrity: sha512-LKPUQpdEMVOeKluHi8md7rwLcoXHhwvWp3x+sJkMuq3gGm9yaYJtPo8sRZSblMFJ5pcOGCAak/scKf1mvZDlQw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-LKPUQpdEMVOeKluHi8md7rwLcoXHhwvWp3x+sJkMuq3gGm9yaYJtPo8sRZSblMFJ5pcOGCAak/scKf1mvZDlQw==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' + typescript: ">=4.8.4 <5.8.0" typescript@5.7.2: - resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} - engines: {node: '>=14.17'} + resolution: + { + integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==, + } + engines: { node: ">=14.17" } hasBin: true ua-parser-js@1.0.40: - resolution: {integrity: sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==} + resolution: + { + integrity: sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==, + } hasBin: true uc.micro@2.1.0: - resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} + resolution: + { + integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==, + } ufo@1.5.4: - resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} + resolution: + { + integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==, + } unbox-primitive@1.1.0: - resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==, + } + engines: { node: ">= 0.4" } unc-path-regex@0.1.2: - resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==, + } + engines: { node: ">=0.10.0" } undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + resolution: + { + integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, + } undici-types@6.19.8: - resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} + resolution: + { + integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==, + } unicode-canonical-property-names-ecmascript@2.0.1: - resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==, + } + engines: { node: ">=4" } unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, + } + engines: { node: ">=4" } unicode-match-property-value-ecmascript@2.2.0: - resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==, + } + engines: { node: ">=4" } unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, + } + engines: { node: ">=4" } unified@10.1.2: - resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} + resolution: + { + integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==, + } unified@11.0.5: - resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + resolution: + { + integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==, + } unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==, + } + engines: { node: ">=8" } unist-util-is@6.0.0: - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + resolution: + { + integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==, + } unist-util-position-from-estree@2.0.0: - resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==} + resolution: + { + integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==, + } unist-util-position@5.0.0: - resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + resolution: + { + integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==, + } unist-util-stringify-position@3.0.3: - resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} + resolution: + { + integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==, + } unist-util-stringify-position@4.0.0: - resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + resolution: + { + integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==, + } unist-util-visit-parents@6.0.1: - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + resolution: + { + integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==, + } unist-util-visit@5.0.0: - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + resolution: + { + integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==, + } universal-user-agent@6.0.1: - resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} + resolution: + { + integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==, + } universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==, + } + engines: { node: ">= 10.0.0" } unixify@1.0.0: - resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==, + } + engines: { node: ">=0.10.0" } unplugin@1.16.0: - resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==, + } + engines: { node: ">=14.0.0" } upath@1.2.0: - resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==, + } + engines: { node: ">=4" } update-browserslist-db@1.1.1: - resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} + resolution: + { + integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==, + } hasBin: true peerDependencies: - browserslist: '>= 4.21.0' + browserslist: ">= 4.21.0" upper-case-first@2.0.2: - resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} + resolution: + { + integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==, + } upper-case@2.0.2: - resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} + resolution: + { + integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==, + } uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, + } url-join@4.0.1: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + resolution: + { + integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==, + } urlpattern-polyfill@10.0.0: - resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==} + resolution: + { + integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==, + } use-callback-ref@1.3.3: - resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==, + } + engines: { node: ">=10" } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true use-sidecar@1.1.3: - resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==, + } + engines: { node: ">=10" } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: - '@types/react': + "@types/react": optional: true use-sound@4.0.3: - resolution: {integrity: sha512-L205pEUFIrLsGYsCUKHQVCt0ajs//YQOFbEQeNwaWaqQj3y3st4SuR+rvpMHLmv8hgTcfUFlvMQawZNI3OE18w==} + resolution: + { + integrity: sha512-L205pEUFIrLsGYsCUKHQVCt0ajs//YQOFbEQeNwaWaqQj3y3st4SuR+rvpMHLmv8hgTcfUFlvMQawZNI3OE18w==, + } peerDependencies: - react: '>=16.8' + react: ">=16.8" use-sync-external-store@1.4.0: - resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==} + resolution: + { + integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + } util@0.12.5: - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} + resolution: + { + integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==, + } uuid@10.0.0: - resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==} + resolution: + { + integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==, + } hasBin: true uuid@9.0.1: - resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} + resolution: + { + integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==, + } hasBin: true v8n@1.5.1: - resolution: {integrity: sha512-LdabyT4OffkyXFCe9UT+uMkxNBs5rcTVuZClvxQr08D5TUgo1OFKkoT65qYRCsiKBl/usHjpXvP4hHMzzDRj3A==} + resolution: + { + integrity: sha512-LdabyT4OffkyXFCe9UT+uMkxNBs5rcTVuZClvxQr08D5TUgo1OFKkoT65qYRCsiKBl/usHjpXvP4hHMzzDRj3A==, + } value-or-promise@1.0.12: - resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==, + } + engines: { node: ">=12" } vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==, + } + engines: { node: ">= 0.8" } vfile-message@3.1.4: - resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} + resolution: + { + integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==, + } vfile-message@4.0.2: - resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} + resolution: + { + integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==, + } vfile@5.3.7: - resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} + resolution: + { + integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==, + } vfile@6.0.3: - resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} + resolution: + { + integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==, + } viem@2.22.3: - resolution: {integrity: sha512-lO8K4lL5vWfJ9dmeJo9BfwlJJ0vNDrgLXgwFJNzjLJ6eDfOGXr48yzNhqt96ybYS7SlM7ecT7yhJIVfhZLkOkw==} + resolution: + { + integrity: sha512-lO8K4lL5vWfJ9dmeJo9BfwlJJ0vNDrgLXgwFJNzjLJ6eDfOGXr48yzNhqt96ybYS7SlM7ecT7yhJIVfhZLkOkw==, + } peerDependencies: - typescript: '>=5.0.4' + typescript: ">=5.0.4" peerDependenciesMeta: typescript: optional: true viem@2.9.20: - resolution: {integrity: sha512-PHb1MrBHMrSZ8Ayuk3Y/6wUTcMbzlACQaM6AJBSv9kRKX3xYSZ/kehi+gvS0swQJeAlTQ4eZM7jsHQJNAOarmg==} + resolution: + { + integrity: sha512-PHb1MrBHMrSZ8Ayuk3Y/6wUTcMbzlACQaM6AJBSv9kRKX3xYSZ/kehi+gvS0swQJeAlTQ4eZM7jsHQJNAOarmg==, + } peerDependencies: - typescript: '>=5.0.4' + typescript: ">=5.0.4" peerDependenciesMeta: typescript: optional: true vite-node@1.6.0: - resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==} - engines: {node: ^18.0.0 || >=20.0.0} + resolution: + { + integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==, + } + engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true vite-node@2.1.8: - resolution: {integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==} - engines: {node: ^18.0.0 || >=20.0.0} + resolution: + { + integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==, + } + engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true vite-plugin-mkcert@1.17.6: - resolution: {integrity: sha512-4JR1RN0HEg/w17eRQJ/Ve2pSa6KCVQcQO6yKtIaKQCFDyd63zGfXHWpygBkvvRSpqa0GcqNKf0fjUJ0HiJQXVQ==} - engines: {node: '>=v16.7.0'} + resolution: + { + integrity: sha512-4JR1RN0HEg/w17eRQJ/Ve2pSa6KCVQcQO6yKtIaKQCFDyd63zGfXHWpygBkvvRSpqa0GcqNKf0fjUJ0HiJQXVQ==, + } + engines: { node: ">=v16.7.0" } peerDependencies: - vite: '>=3' + vite: ">=3" vite-plugin-pwa@0.20.5: - resolution: {integrity: sha512-aweuI/6G6n4C5Inn0vwHumElU/UEpNuO+9iZzwPZGTCH87TeZ6YFMrEY6ZUBQdIHHlhTsbMDryFARcSuOdsz9Q==} - engines: {node: '>=16.0.0'} + resolution: + { + integrity: sha512-aweuI/6G6n4C5Inn0vwHumElU/UEpNuO+9iZzwPZGTCH87TeZ6YFMrEY6ZUBQdIHHlhTsbMDryFARcSuOdsz9Q==, + } + engines: { node: ">=16.0.0" } peerDependencies: - '@vite-pwa/assets-generator': ^0.2.6 + "@vite-pwa/assets-generator": ^0.2.6 vite: ^3.1.0 || ^4.0.0 || ^5.0.0 workbox-build: ^7.1.0 workbox-window: ^7.1.0 peerDependenciesMeta: - '@vite-pwa/assets-generator': + "@vite-pwa/assets-generator": optional: true vite-plugin-svgr@4.3.0: - resolution: {integrity: sha512-Jy9qLB2/PyWklpYy0xk0UU3TlU0t2UMpJXZvf+hWII1lAmRHrOUKi11Uw8N3rxoNk7atZNYO3pR3vI1f7oi+6w==} + resolution: + { + integrity: sha512-Jy9qLB2/PyWklpYy0xk0UU3TlU0t2UMpJXZvf+hWII1lAmRHrOUKi11Uw8N3rxoNk7atZNYO3pR3vI1f7oi+6w==, + } peerDependencies: - vite: '>=2.6.0' + vite: ">=2.6.0" vite-plugin-top-level-await@1.4.4: - resolution: {integrity: sha512-QyxQbvcMkgt+kDb12m2P8Ed35Sp6nXP+l8ptGrnHV9zgYDUpraO0CPdlqLSeBqvY2DToR52nutDG7mIHuysdiw==} + resolution: + { + integrity: sha512-QyxQbvcMkgt+kDb12m2P8Ed35Sp6nXP+l8ptGrnHV9zgYDUpraO0CPdlqLSeBqvY2DToR52nutDG7mIHuysdiw==, + } peerDependencies: - vite: '>=2.8' + vite: ">=2.8" vite-plugin-vercel@9.0.4: - resolution: {integrity: sha512-tNLg5fuMCF6nVfMlttstKt54VQ7KhqHh7/xahZdjGsbP8Z5ANCwy2WlIdrgkrwB752HMPyJnBXGSdg/O3UT3gg==} + resolution: + { + integrity: sha512-tNLg5fuMCF6nVfMlttstKt54VQ7KhqHh7/xahZdjGsbP8Z5ANCwy2WlIdrgkrwB752HMPyJnBXGSdg/O3UT3gg==, + } peerDependencies: - '@vite-plugin-vercel/vike': 9.0.3 - vike: '*' + "@vite-plugin-vercel/vike": 9.0.3 + vike: "*" vite: ^4.4 || ^5.0.2 || ^6 peerDependenciesMeta: - '@vite-plugin-vercel/vike': + "@vite-plugin-vercel/vike": optional: true vike: optional: true vite-plugin-wasm@3.4.1: - resolution: {integrity: sha512-ja3nSo2UCkVeitltJGkS3pfQHAanHv/DqGatdI39ja6McgABlpsZ5hVgl6wuR8Qx5etY3T5qgDQhOWzc5RReZA==} + resolution: + { + integrity: sha512-ja3nSo2UCkVeitltJGkS3pfQHAanHv/DqGatdI39ja6McgABlpsZ5hVgl6wuR8Qx5etY3T5qgDQhOWzc5RReZA==, + } peerDependencies: vite: ^2 || ^3 || ^4 || ^5 || ^6 vite@5.4.11: - resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} - engines: {node: ^18.0.0 || >=20.0.0} + resolution: + { + integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==, + } + engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true peerDependencies: - '@types/node': ^18.0.0 || >=20.0.0 - less: '*' + "@types/node": ^18.0.0 || >=20.0.0 + less: "*" lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' + sass: "*" + sass-embedded: "*" + stylus: "*" + sugarss: "*" terser: ^5.4.0 peerDependenciesMeta: - '@types/node': + "@types/node": optional: true less: optional: true @@ -8437,24 +13649,27 @@ packages: optional: true vitest@1.6.0: - resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==} - engines: {node: ^18.0.0 || >=20.0.0} + resolution: + { + integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==, + } + engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true peerDependencies: - '@edge-runtime/vm': '*' - '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 1.6.0 - '@vitest/ui': 1.6.0 - happy-dom: '*' - jsdom: '*' + "@edge-runtime/vm": "*" + "@types/node": ^18.0.0 || >=20.0.0 + "@vitest/browser": 1.6.0 + "@vitest/ui": 1.6.0 + happy-dom: "*" + jsdom: "*" peerDependenciesMeta: - '@edge-runtime/vm': + "@edge-runtime/vm": optional: true - '@types/node': + "@types/node": optional: true - '@vitest/browser': + "@vitest/browser": optional: true - '@vitest/ui': + "@vitest/ui": optional: true happy-dom: optional: true @@ -8462,24 +13677,27 @@ packages: optional: true vitest@2.1.8: - resolution: {integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==} - engines: {node: ^18.0.0 || >=20.0.0} + resolution: + { + integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==, + } + engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true peerDependencies: - '@edge-runtime/vm': '*' - '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 2.1.8 - '@vitest/ui': 2.1.8 - happy-dom: '*' - jsdom: '*' + "@edge-runtime/vm": "*" + "@types/node": ^18.0.0 || >=20.0.0 + "@vitest/browser": 2.1.8 + "@vitest/ui": 2.1.8 + happy-dom: "*" + jsdom: "*" peerDependenciesMeta: - '@edge-runtime/vm': + "@edge-runtime/vm": optional: true - '@types/node': + "@types/node": optional: true - '@vitest/browser': + "@vitest/browser": optional: true - '@vitest/ui': + "@vitest/ui": optional: true happy-dom: optional: true @@ -8487,144 +13705,261 @@ packages: optional: true vocs@1.0.0-alpha.62: - resolution: {integrity: sha512-WidbX8M33lPlDjOvvjQyZaYGtn3hRZ3iViFuwvlmgAqCX1yGXaQs1tLdS1Cy5ki+q0BIUqXvvy8jo9rBQ+fM6w==} + resolution: + { + integrity: sha512-WidbX8M33lPlDjOvvjQyZaYGtn3hRZ3iViFuwvlmgAqCX1yGXaQs1tLdS1Cy5ki+q0BIUqXvvy8jo9rBQ+fM6w==, + } hasBin: true peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + resolution: + { + integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, + } webauthn-p256@0.0.10: - resolution: {integrity: sha512-EeYD+gmIT80YkSIDb2iWq0lq2zbHo1CxHlQTeJ+KkCILWpVy3zASH3ByD4bopzfk0uCwXxLqKGLqp2W4O28VFA==} + resolution: + { + integrity: sha512-EeYD+gmIT80YkSIDb2iWq0lq2zbHo1CxHlQTeJ+KkCILWpVy3zASH3ByD4bopzfk0uCwXxLqKGLqp2W4O28VFA==, + } webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + resolution: + { + integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, + } webidl-conversions@4.0.2: - resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} + resolution: + { + integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==, + } webpack-virtual-modules@0.6.2: - resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} + resolution: + { + integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==, + } whatwg-fetch@3.6.20: - resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} + resolution: + { + integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==, + } whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + resolution: + { + integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, + } whatwg-url@7.1.0: - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} + resolution: + { + integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==, + } which-boxed-primitive@1.1.1: - resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==, + } + engines: { node: ">= 0.4" } which-builtin-type@1.2.1: - resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==, + } + engines: { node: ">= 0.4" } which-collection@1.0.2: - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==, + } + engines: { node: ">= 0.4" } which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + resolution: + { + integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==, + } which-typed-array@1.1.18: - resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==, + } + engines: { node: ">= 0.4" } which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, + } + engines: { node: ">= 8" } hasBin: true why-is-node-running@2.3.0: - resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==, + } + engines: { node: ">=8" } hasBin: true word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==, + } + engines: { node: ">=0.10.0" } workbox-background-sync@7.3.0: - resolution: {integrity: sha512-PCSk3eK7Mxeuyatb22pcSx9dlgWNv3+M8PqPaYDokks8Y5/FX4soaOqj3yhAZr5k6Q5JWTOMYgaJBpbw11G9Eg==} + resolution: + { + integrity: sha512-PCSk3eK7Mxeuyatb22pcSx9dlgWNv3+M8PqPaYDokks8Y5/FX4soaOqj3yhAZr5k6Q5JWTOMYgaJBpbw11G9Eg==, + } workbox-broadcast-update@7.3.0: - resolution: {integrity: sha512-T9/F5VEdJVhwmrIAE+E/kq5at2OY6+OXXgOWQevnubal6sO92Gjo24v6dCVwQiclAF5NS3hlmsifRrpQzZCdUA==} + resolution: + { + integrity: sha512-T9/F5VEdJVhwmrIAE+E/kq5at2OY6+OXXgOWQevnubal6sO92Gjo24v6dCVwQiclAF5NS3hlmsifRrpQzZCdUA==, + } workbox-build@7.3.0: - resolution: {integrity: sha512-JGL6vZTPlxnlqZRhR/K/msqg3wKP+m0wfEUVosK7gsYzSgeIxvZLi1ViJJzVL7CEeI8r7rGFV973RiEqkP3lWQ==} - engines: {node: '>=16.0.0'} + resolution: + { + integrity: sha512-JGL6vZTPlxnlqZRhR/K/msqg3wKP+m0wfEUVosK7gsYzSgeIxvZLi1ViJJzVL7CEeI8r7rGFV973RiEqkP3lWQ==, + } + engines: { node: ">=16.0.0" } workbox-cacheable-response@7.3.0: - resolution: {integrity: sha512-eAFERIg6J2LuyELhLlmeRcJFa5e16Mj8kL2yCDbhWE+HUun9skRQrGIFVUagqWj4DMaaPSMWfAolM7XZZxNmxA==} + resolution: + { + integrity: sha512-eAFERIg6J2LuyELhLlmeRcJFa5e16Mj8kL2yCDbhWE+HUun9skRQrGIFVUagqWj4DMaaPSMWfAolM7XZZxNmxA==, + } workbox-core@7.3.0: - resolution: {integrity: sha512-Z+mYrErfh4t3zi7NVTvOuACB0A/jA3bgxUN3PwtAVHvfEsZxV9Iju580VEETug3zYJRc0Dmii/aixI/Uxj8fmw==} + resolution: + { + integrity: sha512-Z+mYrErfh4t3zi7NVTvOuACB0A/jA3bgxUN3PwtAVHvfEsZxV9Iju580VEETug3zYJRc0Dmii/aixI/Uxj8fmw==, + } workbox-expiration@7.3.0: - resolution: {integrity: sha512-lpnSSLp2BM+K6bgFCWc5bS1LR5pAwDWbcKt1iL87/eTSJRdLdAwGQznZE+1czLgn/X05YChsrEegTNxjM067vQ==} + resolution: + { + integrity: sha512-lpnSSLp2BM+K6bgFCWc5bS1LR5pAwDWbcKt1iL87/eTSJRdLdAwGQznZE+1czLgn/X05YChsrEegTNxjM067vQ==, + } workbox-google-analytics@7.3.0: - resolution: {integrity: sha512-ii/tSfFdhjLHZ2BrYgFNTrb/yk04pw2hasgbM70jpZfLk0vdJAXgaiMAWsoE+wfJDNWoZmBYY0hMVI0v5wWDbg==} + resolution: + { + integrity: sha512-ii/tSfFdhjLHZ2BrYgFNTrb/yk04pw2hasgbM70jpZfLk0vdJAXgaiMAWsoE+wfJDNWoZmBYY0hMVI0v5wWDbg==, + } workbox-navigation-preload@7.3.0: - resolution: {integrity: sha512-fTJzogmFaTv4bShZ6aA7Bfj4Cewaq5rp30qcxl2iYM45YD79rKIhvzNHiFj1P+u5ZZldroqhASXwwoyusnr2cg==} + resolution: + { + integrity: sha512-fTJzogmFaTv4bShZ6aA7Bfj4Cewaq5rp30qcxl2iYM45YD79rKIhvzNHiFj1P+u5ZZldroqhASXwwoyusnr2cg==, + } workbox-precaching@7.3.0: - resolution: {integrity: sha512-ckp/3t0msgXclVAYaNndAGeAoWQUv7Rwc4fdhWL69CCAb2UHo3Cef0KIUctqfQj1p8h6aGyz3w8Cy3Ihq9OmIw==} + resolution: + { + integrity: sha512-ckp/3t0msgXclVAYaNndAGeAoWQUv7Rwc4fdhWL69CCAb2UHo3Cef0KIUctqfQj1p8h6aGyz3w8Cy3Ihq9OmIw==, + } workbox-range-requests@7.3.0: - resolution: {integrity: sha512-EyFmM1KpDzzAouNF3+EWa15yDEenwxoeXu9bgxOEYnFfCxns7eAxA9WSSaVd8kujFFt3eIbShNqa4hLQNFvmVQ==} + resolution: + { + integrity: sha512-EyFmM1KpDzzAouNF3+EWa15yDEenwxoeXu9bgxOEYnFfCxns7eAxA9WSSaVd8kujFFt3eIbShNqa4hLQNFvmVQ==, + } workbox-recipes@7.3.0: - resolution: {integrity: sha512-BJro/MpuW35I/zjZQBcoxsctgeB+kyb2JAP5EB3EYzePg8wDGoQuUdyYQS+CheTb+GhqJeWmVs3QxLI8EBP1sg==} + resolution: + { + integrity: sha512-BJro/MpuW35I/zjZQBcoxsctgeB+kyb2JAP5EB3EYzePg8wDGoQuUdyYQS+CheTb+GhqJeWmVs3QxLI8EBP1sg==, + } workbox-routing@7.3.0: - resolution: {integrity: sha512-ZUlysUVn5ZUzMOmQN3bqu+gK98vNfgX/gSTZ127izJg/pMMy4LryAthnYtjuqcjkN4HEAx1mdgxNiKJMZQM76A==} + resolution: + { + integrity: sha512-ZUlysUVn5ZUzMOmQN3bqu+gK98vNfgX/gSTZ127izJg/pMMy4LryAthnYtjuqcjkN4HEAx1mdgxNiKJMZQM76A==, + } workbox-strategies@7.3.0: - resolution: {integrity: sha512-tmZydug+qzDFATwX7QiEL5Hdf7FrkhjaF9db1CbB39sDmEZJg3l9ayDvPxy8Y18C3Y66Nrr9kkN1f/RlkDgllg==} + resolution: + { + integrity: sha512-tmZydug+qzDFATwX7QiEL5Hdf7FrkhjaF9db1CbB39sDmEZJg3l9ayDvPxy8Y18C3Y66Nrr9kkN1f/RlkDgllg==, + } workbox-streams@7.3.0: - resolution: {integrity: sha512-SZnXucyg8x2Y61VGtDjKPO5EgPUG5NDn/v86WYHX+9ZqvAsGOytP0Jxp1bl663YUuMoXSAtsGLL+byHzEuMRpw==} + resolution: + { + integrity: sha512-SZnXucyg8x2Y61VGtDjKPO5EgPUG5NDn/v86WYHX+9ZqvAsGOytP0Jxp1bl663YUuMoXSAtsGLL+byHzEuMRpw==, + } workbox-sw@7.3.0: - resolution: {integrity: sha512-aCUyoAZU9IZtH05mn0ACUpyHzPs0lMeJimAYkQkBsOWiqaJLgusfDCR+yllkPkFRxWpZKF8vSvgHYeG7LwhlmA==} + resolution: + { + integrity: sha512-aCUyoAZU9IZtH05mn0ACUpyHzPs0lMeJimAYkQkBsOWiqaJLgusfDCR+yllkPkFRxWpZKF8vSvgHYeG7LwhlmA==, + } workbox-window@7.3.0: - resolution: {integrity: sha512-qW8PDy16OV1UBaUNGlTVcepzrlzyzNW/ZJvFQQs2j2TzGsg6IKjcpZC1RSquqQnTOafl5pCj5bGfAHlCjOOjdA==} + resolution: + { + integrity: sha512-qW8PDy16OV1UBaUNGlTVcepzrlzyzNW/ZJvFQQs2j2TzGsg6IKjcpZC1RSquqQnTOafl5pCj5bGfAHlCjOOjdA==, + } wouter@2.12.1: - resolution: {integrity: sha512-G7a6JMSLSNcu6o8gdOfIzqxuo8Qx1qs+9rpVnlurH69angsSFPZP5gESNuVNeJct/MGpQg191pDo4HUjTx7IIQ==} + resolution: + { + integrity: sha512-G7a6JMSLSNcu6o8gdOfIzqxuo8Qx1qs+9rpVnlurH69angsSFPZP5gESNuVNeJct/MGpQg191pDo4HUjTx7IIQ==, + } peerDependencies: - react: '>=16.8.0' + react: ">=16.8.0" wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, + } + engines: { node: ">=8" } wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, + } + engines: { node: ">=10" } wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, + } + engines: { node: ">=12" } wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + resolution: + { + integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, + } ws@8.13.0: - resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==, + } + engines: { node: ">=10.0.0" } peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' + utf-8-validate: ">=5.0.2" peerDependenciesMeta: bufferutil: optional: true @@ -8632,11 +13967,14 @@ packages: optional: true ws@8.18.0: - resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==, + } + engines: { node: ">=10.0.0" } peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' + utf-8-validate: ">=5.0.2" peerDependenciesMeta: bufferutil: optional: true @@ -8644,72 +13982,117 @@ packages: optional: true y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + resolution: + { + integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, + } y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, + } + engines: { node: ">=10" } yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + resolution: + { + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, + } yallist@5.0.0: - resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==, + } + engines: { node: ">=18" } yaml-ast-parser@0.0.43: - resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==} + resolution: + { + integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==, + } yaml@2.7.0: - resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==} - engines: {node: '>= 14'} + resolution: + { + integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==, + } + engines: { node: ">= 14" } hasBin: true yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, + } + engines: { node: ">=6" } yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, + } + engines: { node: ">=12" } yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, + } + engines: { node: ">=8" } yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, + } + engines: { node: ">=12" } yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, + } + engines: { node: ">=10" } yocto-queue@1.1.1: - resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==, + } + engines: { node: ">=12.20" } zod@3.24.1: - resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==} + resolution: + { + integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==, + } zustand@3.7.2: - resolution: {integrity: sha512-PIJDIZKtokhof+9+60cpockVOq05sJzHCriyvaLBmEJixseQ1a5Kdov6fWZfWOu5SK9c+FhH1jU0tntLxRJYMA==} - engines: {node: '>=12.7.0'} + resolution: + { + integrity: sha512-PIJDIZKtokhof+9+60cpockVOq05sJzHCriyvaLBmEJixseQ1a5Kdov6fWZfWOu5SK9c+FhH1jU0tntLxRJYMA==, + } + engines: { node: ">=12.7.0" } peerDependencies: - react: '>=16.8' + react: ">=16.8" peerDependenciesMeta: react: optional: true zustand@4.5.6: - resolution: {integrity: sha512-ibr/n1hBzLLj5Y+yUcU7dYw8p6WnIVzdJbnX+1YpaScvZVF2ziugqHs+LAmHw4lWO9c/zRj+K1ncgWDQuthEdQ==} - engines: {node: '>=12.7.0'} - peerDependencies: - '@types/react': '>=16.8' - immer: '>=9.0.6' - react: '>=16.8' + resolution: + { + integrity: sha512-ibr/n1hBzLLj5Y+yUcU7dYw8p6WnIVzdJbnX+1YpaScvZVF2ziugqHs+LAmHw4lWO9c/zRj+K1ncgWDQuthEdQ==, + } + engines: { node: ">=12.7.0" } + peerDependencies: + "@types/react": ">=16.8" + immer: ">=9.0.6" + react: ">=16.8" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true immer: optional: true @@ -8717,48 +14100,50 @@ packages: optional: true zwitch@2.0.4: - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + resolution: + { + integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==, + } snapshots: - - '@0no-co/graphql.web@1.0.13(graphql@16.10.0)': + "@0no-co/graphql.web@1.0.13(graphql@16.10.0)": optionalDependencies: graphql: 16.10.0 - '@0no-co/graphqlsp@1.12.16(graphql@16.10.0)(typescript@5.7.2)': + "@0no-co/graphqlsp@1.12.16(graphql@16.10.0)(typescript@5.7.2)": dependencies: - '@gql.tada/internal': 1.0.8(graphql@16.10.0)(typescript@5.7.2) + "@gql.tada/internal": 1.0.8(graphql@16.10.0)(typescript@5.7.2) graphql: 16.10.0 typescript: 5.7.2 - '@adobe/css-tools@4.4.1': {} + "@adobe/css-tools@4.4.1": {} - '@adraffy/ens-normalize@1.10.0': {} + "@adraffy/ens-normalize@1.10.0": {} - '@adraffy/ens-normalize@1.11.0': {} + "@adraffy/ens-normalize@1.11.0": {} - '@alloc/quick-lru@5.2.0': {} + "@alloc/quick-lru@5.2.0": {} - '@ampproject/remapping@2.3.0': + "@ampproject/remapping@2.3.0": dependencies: - '@jridgewell/gen-mapping': 0.3.8 - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/gen-mapping": 0.3.8 + "@jridgewell/trace-mapping": 0.3.25 - '@apideck/better-ajv-errors@0.3.6(ajv@8.17.1)': + "@apideck/better-ajv-errors@0.3.6(ajv@8.17.1)": dependencies: ajv: 8.17.1 json-schema: 0.4.0 jsonpointer: 5.0.1 leven: 3.1.0 - '@ardatan/relay-compiler@12.0.0(encoding@0.1.13)(graphql@16.10.0)': + "@ardatan/relay-compiler@12.0.0(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/generator': 7.26.3 - '@babel/parser': 7.26.3 - '@babel/runtime': 7.26.0 - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + "@babel/core": 7.26.0 + "@babel/generator": 7.26.3 + "@babel/parser": 7.26.3 + "@babel/runtime": 7.26.0 + "@babel/traverse": 7.26.4 + "@babel/types": 7.26.3 babel-preset-fbjs: 3.4.0(@babel/core@7.26.0) chalk: 4.1.2 fb-watchman: 2.0.2 @@ -8775,15 +14160,15 @@ snapshots: - encoding - supports-color - '@ardatan/sync-fetch@0.0.1(encoding@0.1.13)': + "@ardatan/sync-fetch@0.0.1(encoding@0.1.13)": dependencies: node-fetch: 2.7.0(encoding@0.1.13) transitivePeerDependencies: - encoding - '@ark-project/core@3.0.0-beta.1(encoding@0.1.13)(typescript@5.7.2)(viem@2.22.3(typescript@5.7.2)(zod@3.24.1))': + "@ark-project/core@3.0.0-beta.1(encoding@0.1.13)(typescript@5.7.2)(viem@2.22.3(typescript@5.7.2)(zod@3.24.1))": dependencies: - '@scure/starknet': 0.3.0 + "@scure/starknet": 0.3.0 starknet: 6.11.0(encoding@0.1.13) viem: 2.22.3(typescript@5.7.2)(zod@3.24.1) optionalDependencies: @@ -8791,12 +14176,12 @@ snapshots: transitivePeerDependencies: - encoding - '@ark-project/react@2.0.0-beta.2(encoding@0.1.13)(typescript@5.7.2)(viem@2.22.3(typescript@5.7.2)(zod@3.24.1))': + "@ark-project/react@2.0.0-beta.2(encoding@0.1.13)(typescript@5.7.2)(viem@2.22.3(typescript@5.7.2)(zod@3.24.1))": dependencies: - '@ark-project/core': 3.0.0-beta.1(encoding@0.1.13)(typescript@5.7.2)(viem@2.22.3(typescript@5.7.2)(zod@3.24.1)) - '@starknet-react/chains': 0.1.7 - '@starknet-react/core': 2.9.0(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13)) - '@tanstack/react-query': 5.62.16(react@18.3.1) + "@ark-project/core": 3.0.0-beta.1(encoding@0.1.13)(typescript@5.7.2)(viem@2.22.3(typescript@5.7.2)(zod@3.24.1)) + "@starknet-react/chains": 0.1.7 + "@starknet-react/core": 2.9.0(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13)) + "@tanstack/react-query": 5.62.16(react@18.3.1) get-starknet-core: 3.3.4(starknet@6.11.0(encoding@0.1.13)) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -8806,26 +14191,26 @@ snapshots: - typescript - viem - '@babel/code-frame@7.26.2': + "@babel/code-frame@7.26.2": dependencies: - '@babel/helper-validator-identifier': 7.25.9 + "@babel/helper-validator-identifier": 7.25.9 js-tokens: 4.0.0 picocolors: 1.1.1 - '@babel/compat-data@7.26.3': {} + "@babel/compat-data@7.26.3": {} - '@babel/core@7.26.0': + "@babel/core@7.26.0": dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.3 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) - '@babel/helpers': 7.26.0 - '@babel/parser': 7.26.3 - '@babel/template': 7.25.9 - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + "@ampproject/remapping": 2.3.0 + "@babel/code-frame": 7.26.2 + "@babel/generator": 7.26.3 + "@babel/helper-compilation-targets": 7.25.9 + "@babel/helper-module-transforms": 7.26.0(@babel/core@7.26.0) + "@babel/helpers": 7.26.0 + "@babel/parser": 7.26.3 + "@babel/template": 7.25.9 + "@babel/traverse": 7.26.4 + "@babel/types": 7.26.3 convert-source-map: 2.0.0 debug: 4.4.0 gensync: 1.0.0-beta.2 @@ -8834,678 +14219,678 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/generator@7.26.3': + "@babel/generator@7.26.3": dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 - '@jridgewell/gen-mapping': 0.3.8 - '@jridgewell/trace-mapping': 0.3.25 + "@babel/parser": 7.26.3 + "@babel/types": 7.26.3 + "@jridgewell/gen-mapping": 0.3.8 + "@jridgewell/trace-mapping": 0.3.25 jsesc: 3.1.0 - '@babel/helper-annotate-as-pure@7.25.9': + "@babel/helper-annotate-as-pure@7.25.9": dependencies: - '@babel/types': 7.26.3 + "@babel/types": 7.26.3 - '@babel/helper-compilation-targets@7.25.9': + "@babel/helper-compilation-targets@7.25.9": dependencies: - '@babel/compat-data': 7.26.3 - '@babel/helper-validator-option': 7.25.9 + "@babel/compat-data": 7.26.3 + "@babel/helper-validator-option": 7.25.9 browserslist: 4.24.3 lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)': + "@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/traverse': 7.26.4 + "@babel/core": 7.26.0 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-member-expression-to-functions": 7.25.9 + "@babel/helper-optimise-call-expression": 7.25.9 + "@babel/helper-replace-supers": 7.25.9(@babel/core@7.26.0) + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 + "@babel/traverse": 7.26.4 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)': + "@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-annotate-as-pure': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-annotate-as-pure": 7.25.9 regexpu-core: 6.2.0 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)': + "@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-compilation-targets": 7.25.9 + "@babel/helper-plugin-utils": 7.25.9 debug: 4.4.0 lodash.debounce: 4.0.8 resolve: 1.22.10 transitivePeerDependencies: - supports-color - '@babel/helper-member-expression-to-functions@7.25.9': + "@babel/helper-member-expression-to-functions@7.25.9": dependencies: - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + "@babel/traverse": 7.26.4 + "@babel/types": 7.26.3 transitivePeerDependencies: - supports-color - '@babel/helper-module-imports@7.25.9': + "@babel/helper-module-imports@7.25.9": dependencies: - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + "@babel/traverse": 7.26.4 + "@babel/types": 7.26.3 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': + "@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.4 + "@babel/core": 7.26.0 + "@babel/helper-module-imports": 7.25.9 + "@babel/helper-validator-identifier": 7.25.9 + "@babel/traverse": 7.26.4 transitivePeerDependencies: - supports-color - '@babel/helper-optimise-call-expression@7.25.9': + "@babel/helper-optimise-call-expression@7.25.9": dependencies: - '@babel/types': 7.26.3 + "@babel/types": 7.26.3 - '@babel/helper-plugin-utils@7.25.9': {} + "@babel/helper-plugin-utils@7.25.9": {} - '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)': + "@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.26.4 + "@babel/core": 7.26.0 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-wrap-function": 7.25.9 + "@babel/traverse": 7.26.4 transitivePeerDependencies: - supports-color - '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)': + "@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.26.4 + "@babel/core": 7.26.0 + "@babel/helper-member-expression-to-functions": 7.25.9 + "@babel/helper-optimise-call-expression": 7.25.9 + "@babel/traverse": 7.26.4 transitivePeerDependencies: - supports-color - '@babel/helper-skip-transparent-expression-wrappers@7.25.9': + "@babel/helper-skip-transparent-expression-wrappers@7.25.9": dependencies: - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + "@babel/traverse": 7.26.4 + "@babel/types": 7.26.3 transitivePeerDependencies: - supports-color - '@babel/helper-string-parser@7.25.9': {} + "@babel/helper-string-parser@7.25.9": {} - '@babel/helper-validator-identifier@7.25.9': {} + "@babel/helper-validator-identifier@7.25.9": {} - '@babel/helper-validator-option@7.25.9': {} + "@babel/helper-validator-option@7.25.9": {} - '@babel/helper-wrap-function@7.25.9': + "@babel/helper-wrap-function@7.25.9": dependencies: - '@babel/template': 7.25.9 - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + "@babel/template": 7.25.9 + "@babel/traverse": 7.26.4 + "@babel/types": 7.26.3 transitivePeerDependencies: - supports-color - '@babel/helpers@7.26.0': + "@babel/helpers@7.26.0": dependencies: - '@babel/template': 7.25.9 - '@babel/types': 7.26.3 + "@babel/template": 7.25.9 + "@babel/types": 7.26.3 - '@babel/parser@7.26.3': + "@babel/parser@7.26.3": dependencies: - '@babel/types': 7.26.3 + "@babel/types": 7.26.3 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.26.4 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/traverse": 7.26.4 transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 + "@babel/plugin-transform-optional-chaining": 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.26.4 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/traverse": 7.26.4 transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.0)': + "@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.0)': + "@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.0)": dependencies: - '@babel/compat-data': 7.26.3 - '@babel/core': 7.26.0 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) + "@babel/compat-data": 7.26.3 + "@babel/core": 7.26.0 + "@babel/helper-compilation-targets": 7.25.9 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.26.0) + "@babel/plugin-transform-parameters": 7.25.9(@babel/core@7.26.0) - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)': + "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 + "@babel/core": 7.26.0 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)': + "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.0)': + "@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)': + "@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)': + "@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)': + "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)': + "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.26.4 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-remap-async-to-generator": 7.25.9(@babel/core@7.26.0) + "@babel/traverse": 7.26.4 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/helper-module-imports": 7.25.9 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-remap-async-to-generator": 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)': + "@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.26.4 + "@babel/core": 7.26.0 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-compilation-targets": 7.25.9 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-replace-supers": 7.25.9(@babel/core@7.26.0) + "@babel/traverse": 7.26.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/template': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/template": 7.25.9 - '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)': + "@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/plugin-syntax-flow": 7.26.0(@babel/core@7.26.0) - '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.26.4 + "@babel/core": 7.26.0 + "@babel/helper-compilation-targets": 7.25.9 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/traverse": 7.26.4 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-module-transforms": 7.26.0(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)': + "@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-module-transforms": 7.26.0(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.4 + "@babel/core": 7.26.0 + "@babel/helper-module-transforms": 7.26.0(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-validator-identifier": 7.25.9 + "@babel/traverse": 7.26.4 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-module-transforms": 7.26.0(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/helper-compilation-targets": 7.25.9 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/plugin-transform-parameters": 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-replace-supers": 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-react-constant-elements@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-react-constant-elements@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/plugin-transform-react-jsx": 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) - '@babel/types': 7.26.3 + "@babel/core": 7.26.0 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-module-imports": 7.25.9 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/plugin-syntax-jsx": 7.25.9(@babel/core@7.26.0) + "@babel/types": 7.26.3 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 regenerator-transform: 0.15.2 - '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)': + "@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)': + "@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 - '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)': + "@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/helper-annotate-as-pure": 7.25.9 + "@babel/helper-create-class-features-plugin": 7.25.9(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-skip-transparent-expression-wrappers": 7.25.9 + "@babel/plugin-syntax-typescript": 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)': - dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - - '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)': - dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 - - '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)': - dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 - - '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)': - dependencies: - '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) - '@babel/helper-plugin-utils': 7.25.9 - - '@babel/preset-env@7.26.0(@babel/core@7.26.0)': - dependencies: - '@babel/compat-data': 7.26.3 - '@babel/core': 7.26.0 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-validator-option': 7.25.9 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0) - '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0) - '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0) - '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0) - '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.0) - '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0) - '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0) - '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0) + "@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)": + dependencies: + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + + "@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)": + dependencies: + "@babel/core": 7.26.0 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 + + "@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)": + dependencies: + "@babel/core": 7.26.0 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 + + "@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)": + dependencies: + "@babel/core": 7.26.0 + "@babel/helper-create-regexp-features-plugin": 7.26.3(@babel/core@7.26.0) + "@babel/helper-plugin-utils": 7.25.9 + + "@babel/preset-env@7.26.0(@babel/core@7.26.0)": + dependencies: + "@babel/compat-data": 7.26.3 + "@babel/core": 7.26.0 + "@babel/helper-compilation-targets": 7.25.9 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-validator-option": 7.25.9 + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-bugfix-safari-class-field-initializer-scope": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0) + "@babel/plugin-syntax-import-assertions": 7.26.0(@babel/core@7.26.0) + "@babel/plugin-syntax-import-attributes": 7.26.0(@babel/core@7.26.0) + "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.26.0) + "@babel/plugin-transform-arrow-functions": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-async-generator-functions": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-async-to-generator": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-block-scoped-functions": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-block-scoping": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-class-properties": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-class-static-block": 7.26.0(@babel/core@7.26.0) + "@babel/plugin-transform-classes": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-computed-properties": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-destructuring": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-dotall-regex": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-duplicate-keys": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-dynamic-import": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-exponentiation-operator": 7.26.3(@babel/core@7.26.0) + "@babel/plugin-transform-export-namespace-from": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-for-of": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-function-name": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-json-strings": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-literals": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-logical-assignment-operators": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-member-expression-literals": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-modules-amd": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-modules-commonjs": 7.26.3(@babel/core@7.26.0) + "@babel/plugin-transform-modules-systemjs": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-modules-umd": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-named-capturing-groups-regex": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-new-target": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-nullish-coalescing-operator": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-numeric-separator": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-object-rest-spread": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-object-super": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-optional-catch-binding": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-optional-chaining": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-parameters": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-private-methods": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-private-property-in-object": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-property-literals": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-regenerator": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-regexp-modifiers": 7.26.0(@babel/core@7.26.0) + "@babel/plugin-transform-reserved-words": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-shorthand-properties": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-spread": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-sticky-regex": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-template-literals": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-typeof-symbol": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-unicode-escapes": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-unicode-property-regex": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-unicode-regex": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-unicode-sets-regex": 7.25.9(@babel/core@7.26.0) + "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.26.0) babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0) babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0) babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0) @@ -9514,73 +14899,73 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)': + "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/types': 7.26.3 + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/types": 7.26.3 esutils: 2.0.3 - '@babel/preset-react@7.26.3(@babel/core@7.26.0)': + "@babel/preset-react@7.26.3(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-validator-option': 7.25.9 - '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-validator-option": 7.25.9 + "@babel/plugin-transform-react-display-name": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-react-jsx": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-react-jsx-development": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-react-pure-annotations": 7.25.9(@babel/core@7.26.0) transitivePeerDependencies: - supports-color - '@babel/preset-typescript@7.26.0(@babel/core@7.26.0)': + "@babel/preset-typescript@7.26.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-validator-option': 7.25.9 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0) - '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/helper-plugin-utils": 7.25.9 + "@babel/helper-validator-option": 7.25.9 + "@babel/plugin-syntax-jsx": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-modules-commonjs": 7.26.3(@babel/core@7.26.0) + "@babel/plugin-transform-typescript": 7.26.3(@babel/core@7.26.0) transitivePeerDependencies: - supports-color - '@babel/runtime@7.26.0': + "@babel/runtime@7.26.0": dependencies: regenerator-runtime: 0.14.1 - '@babel/template@7.25.9': + "@babel/template@7.25.9": dependencies: - '@babel/code-frame': 7.26.2 - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + "@babel/code-frame": 7.26.2 + "@babel/parser": 7.26.3 + "@babel/types": 7.26.3 - '@babel/traverse@7.26.4': + "@babel/traverse@7.26.4": dependencies: - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.3 - '@babel/parser': 7.26.3 - '@babel/template': 7.25.9 - '@babel/types': 7.26.3 + "@babel/code-frame": 7.26.2 + "@babel/generator": 7.26.3 + "@babel/parser": 7.26.3 + "@babel/template": 7.25.9 + "@babel/types": 7.26.3 debug: 4.4.0 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.26.3': + "@babel/types@7.26.3": dependencies: - '@babel/helper-string-parser': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 + "@babel/helper-string-parser": 7.25.9 + "@babel/helper-validator-identifier": 7.25.9 - '@bcoe/v8-coverage@0.2.3': {} + "@bcoe/v8-coverage@0.2.3": {} - '@brillout/libassert@0.5.8': {} + "@brillout/libassert@0.5.8": {} - '@cartridge/account-wasm@0.5.7': {} + "@cartridge/account-wasm@0.5.7": {} - '@cartridge/connector@0.5.7(encoding@0.1.13)(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(typescript@5.7.2)': + "@cartridge/connector@0.5.7(encoding@0.1.13)(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(typescript@5.7.2)": dependencies: - '@cartridge/controller': 0.5.7(encoding@0.1.13) - '@starknet-react/core': 3.6.3(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) + "@cartridge/controller": 0.5.7(encoding@0.1.13) + "@starknet-react/core": 3.6.3(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) starknet: 6.11.0(encoding@0.1.13) transitivePeerDependencies: - bufferutil @@ -9590,12 +14975,12 @@ snapshots: - typescript - utf-8-validate - '@cartridge/controller@0.5.7(encoding@0.1.13)': + "@cartridge/controller@0.5.7(encoding@0.1.13)": dependencies: - '@cartridge/account-wasm': 0.5.7 - '@cartridge/penpal': 6.2.3 - '@starknet-io/types-js': 0.7.10 - '@telegram-apps/sdk': 2.11.3 + "@cartridge/account-wasm": 0.5.7 + "@cartridge/penpal": 6.2.3 + "@starknet-io/types-js": 0.7.10 + "@telegram-apps/sdk": 2.11.3 base64url: 3.0.1 cbor-x: 1.6.0 fast-deep-equal: 3.1.3 @@ -9604,27 +14989,27 @@ snapshots: transitivePeerDependencies: - encoding - '@cartridge/penpal@6.2.3': {} + "@cartridge/penpal@6.2.3": {} - '@cbor-extract/cbor-extract-darwin-arm64@2.2.0': + "@cbor-extract/cbor-extract-darwin-arm64@2.2.0": optional: true - '@cbor-extract/cbor-extract-darwin-x64@2.2.0': + "@cbor-extract/cbor-extract-darwin-x64@2.2.0": optional: true - '@cbor-extract/cbor-extract-linux-arm64@2.2.0': + "@cbor-extract/cbor-extract-linux-arm64@2.2.0": optional: true - '@cbor-extract/cbor-extract-linux-arm@2.2.0': + "@cbor-extract/cbor-extract-linux-arm@2.2.0": optional: true - '@cbor-extract/cbor-extract-linux-x64@2.2.0': + "@cbor-extract/cbor-extract-linux-x64@2.2.0": optional: true - '@cbor-extract/cbor-extract-win32-x64@2.2.0': + "@cbor-extract/cbor-extract-win32-x64@2.2.0": optional: true - '@chromatic-com/storybook@1.9.0(react@18.3.1)': + "@chromatic-com/storybook@1.9.0(react@18.3.1)": dependencies: chromatic: 11.22.0 filesize: 10.1.6 @@ -9632,24 +15017,24 @@ snapshots: react-confetti: 6.2.2(react@18.3.1) strip-ansi: 7.1.0 transitivePeerDependencies: - - '@chromatic-com/cypress' - - '@chromatic-com/playwright' + - "@chromatic-com/cypress" + - "@chromatic-com/playwright" - react - '@clack/core@0.3.5': + "@clack/core@0.3.5": dependencies: picocolors: 1.1.1 sisteransi: 1.0.5 - '@clack/prompts@0.7.0': + "@clack/prompts@0.7.0": dependencies: - '@clack/core': 0.3.5 + "@clack/core": 0.3.5 picocolors: 1.1.1 sisteransi: 1.0.5 - '@dojoengine/core@1.0.0-alpha.24(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)': + "@dojoengine/core@1.0.0-alpha.24(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)": dependencies: - '@dojoengine/recs': 2.0.13(typescript@5.7.2)(zod@3.24.1) + "@dojoengine/recs": 2.0.13(typescript@5.7.2)(zod@3.24.1) starknet: 6.11.0(encoding@0.1.13) zod: 3.24.1 transitivePeerDependencies: @@ -9657,9 +15042,9 @@ snapshots: - typescript - utf-8-validate - '@dojoengine/core@1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)': + "@dojoengine/core@1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)": dependencies: - '@dojoengine/recs': 2.0.13(typescript@5.7.2)(zod@3.24.1) + "@dojoengine/recs": 2.0.13(typescript@5.7.2)(zod@3.24.1) starknet: 6.11.0(encoding@0.1.13) zod: 3.24.1 transitivePeerDependencies: @@ -9667,11 +15052,11 @@ snapshots: - typescript - utf-8-validate - '@dojoengine/create-burner@1.0.4-alpha.3.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)': + "@dojoengine/create-burner@1.0.4-alpha.3.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)": dependencies: - '@dojoengine/core': 1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) - '@scure/bip32': 1.6.1 - '@starknet-react/core': 2.3.0(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13)) + "@dojoengine/core": 1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2) + "@scure/bip32": 1.6.1 + "@starknet-react/core": 2.3.0(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13)) encoding: 0.1.13 get-starknet-core: 3.3.4(starknet@6.11.0(encoding@0.1.13)) js-cookie: 3.0.5 @@ -9683,13 +15068,13 @@ snapshots: - typescript - utf-8-validate - '@dojoengine/react@1.0.4-alpha.3.1.0(@types/node@20.17.12)(@types/react@18.3.18)(@vitest/ui@2.1.8(vitest@2.1.8))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(type-fest@2.19.0)(typescript@5.7.2)(zod@3.24.1)': + "@dojoengine/react@1.0.4-alpha.3.1.0(@types/node@20.17.12)(@types/react@18.3.18)(@vitest/ui@2.1.8(vitest@2.1.8))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(type-fest@2.19.0)(typescript@5.7.2)(zod@3.24.1)": dependencies: - '@dojoengine/recs': 2.0.13(typescript@5.7.2)(zod@3.24.1) - '@dojoengine/state': 1.0.4-alpha.3.1.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(typescript@5.7.2)(zod@3.24.1) - '@dojoengine/torii-client': 1.0.4-alpha.3.1.0 - '@dojoengine/utils': 1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)(zod@3.24.1) - '@latticexyz/utils': 2.2.14 + "@dojoengine/recs": 2.0.13(typescript@5.7.2)(zod@3.24.1) + "@dojoengine/state": 1.0.4-alpha.3.1.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(typescript@5.7.2)(zod@3.24.1) + "@dojoengine/torii-client": 1.0.4-alpha.3.1.0 + "@dojoengine/utils": 1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)(zod@3.24.1) + "@latticexyz/utils": 2.2.14 encoding: 0.1.13 fast-deep-equal: 3.1.3 get-starknet-core: 3.3.4(starknet@6.11.0(encoding@0.1.13)) @@ -9700,11 +15085,11 @@ snapshots: type-fest: 2.19.0 zustand: 4.5.6(@types/react@18.3.18)(react@18.3.1) transitivePeerDependencies: - - '@edge-runtime/vm' - - '@types/node' - - '@types/react' - - '@vitest/browser' - - '@vitest/ui' + - "@edge-runtime/vm" + - "@types/node" + - "@types/react" + - "@vitest/browser" + - "@vitest/ui" - bufferutil - happy-dom - immer @@ -9721,10 +15106,10 @@ snapshots: - utf-8-validate - zod - '@dojoengine/recs@2.0.13(typescript@5.7.2)(zod@3.24.1)': + "@dojoengine/recs@2.0.13(typescript@5.7.2)(zod@3.24.1)": dependencies: - '@latticexyz/schema-type': 2.0.12(typescript@5.7.2)(zod@3.24.1) - '@latticexyz/utils': 2.0.12 + "@latticexyz/schema-type": 2.0.12(typescript@5.7.2)(zod@3.24.1) + "@latticexyz/utils": 2.0.12 mobx: 6.13.5 rxjs: 7.5.5 transitivePeerDependencies: @@ -9733,17 +15118,17 @@ snapshots: - utf-8-validate - zod - '@dojoengine/state@1.0.4-alpha.3.1.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(typescript@5.7.2)(zod@3.24.1)': + "@dojoengine/state@1.0.4-alpha.3.1.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(starknet@6.11.0(encoding@0.1.13))(terser@5.37.0)(typescript@5.7.2)(zod@3.24.1)": dependencies: - '@dojoengine/recs': 2.0.13(typescript@5.7.2)(zod@3.24.1) - '@dojoengine/torii-client': 1.0.4-alpha.3.1.0 + "@dojoengine/recs": 2.0.13(typescript@5.7.2)(zod@3.24.1) + "@dojoengine/torii-client": 1.0.4-alpha.3.1.0 starknet: 6.11.0(encoding@0.1.13) vitest: 1.6.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(terser@5.37.0) transitivePeerDependencies: - - '@edge-runtime/vm' - - '@types/node' - - '@vitest/browser' - - '@vitest/ui' + - "@edge-runtime/vm" + - "@types/node" + - "@vitest/browser" + - "@vitest/ui" - bufferutil - happy-dom - jsdom @@ -9759,16 +15144,16 @@ snapshots: - utf-8-validate - zod - '@dojoengine/torii-client@1.0.4-alpha.3.1.0': + "@dojoengine/torii-client@1.0.4-alpha.3.1.0": dependencies: - '@dojoengine/torii-wasm': 1.0.4-alpha.3.1.0 + "@dojoengine/torii-wasm": 1.0.4-alpha.3.1.0 - '@dojoengine/torii-wasm@1.0.4-alpha.3.1.0': {} + "@dojoengine/torii-wasm@1.0.4-alpha.3.1.0": {} - '@dojoengine/utils@1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)(zod@3.24.1)': + "@dojoengine/utils@1.0.4-alpha.3.1.0(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)(zod@3.24.1)": dependencies: - '@dojoengine/recs': 2.0.13(typescript@5.7.2)(zod@3.24.1) - '@latticexyz/utils': 2.2.14 + "@dojoengine/recs": 2.0.13(typescript@5.7.2)(zod@3.24.1) + "@latticexyz/utils": 2.2.14 mathjs: 12.4.3 micro-starknet: 0.2.3 starknet: 6.11.0(encoding@0.1.13) @@ -9778,322 +15163,322 @@ snapshots: - utf-8-validate - zod - '@emotion/hash@0.9.2': {} + "@emotion/hash@0.9.2": {} - '@envelop/core@5.0.2': + "@envelop/core@5.0.2": dependencies: - '@envelop/types': 5.0.0 + "@envelop/types": 5.0.0 tslib: 2.8.1 - '@envelop/types@5.0.0': + "@envelop/types@5.0.0": dependencies: tslib: 2.8.1 - '@esbuild/aix-ppc64@0.19.12': + "@esbuild/aix-ppc64@0.19.12": optional: true - '@esbuild/aix-ppc64@0.21.5': + "@esbuild/aix-ppc64@0.21.5": optional: true - '@esbuild/aix-ppc64@0.23.1': + "@esbuild/aix-ppc64@0.23.1": optional: true - '@esbuild/aix-ppc64@0.24.2': + "@esbuild/aix-ppc64@0.24.2": optional: true - '@esbuild/android-arm64@0.19.12': + "@esbuild/android-arm64@0.19.12": optional: true - '@esbuild/android-arm64@0.21.5': + "@esbuild/android-arm64@0.21.5": optional: true - '@esbuild/android-arm64@0.23.1': + "@esbuild/android-arm64@0.23.1": optional: true - '@esbuild/android-arm64@0.24.2': + "@esbuild/android-arm64@0.24.2": optional: true - '@esbuild/android-arm@0.19.12': + "@esbuild/android-arm@0.19.12": optional: true - '@esbuild/android-arm@0.21.5': + "@esbuild/android-arm@0.21.5": optional: true - '@esbuild/android-arm@0.23.1': + "@esbuild/android-arm@0.23.1": optional: true - '@esbuild/android-arm@0.24.2': + "@esbuild/android-arm@0.24.2": optional: true - '@esbuild/android-x64@0.19.12': + "@esbuild/android-x64@0.19.12": optional: true - '@esbuild/android-x64@0.21.5': + "@esbuild/android-x64@0.21.5": optional: true - '@esbuild/android-x64@0.23.1': + "@esbuild/android-x64@0.23.1": optional: true - '@esbuild/android-x64@0.24.2': + "@esbuild/android-x64@0.24.2": optional: true - '@esbuild/darwin-arm64@0.19.12': + "@esbuild/darwin-arm64@0.19.12": optional: true - '@esbuild/darwin-arm64@0.21.5': + "@esbuild/darwin-arm64@0.21.5": optional: true - '@esbuild/darwin-arm64@0.23.1': + "@esbuild/darwin-arm64@0.23.1": optional: true - '@esbuild/darwin-arm64@0.24.2': + "@esbuild/darwin-arm64@0.24.2": optional: true - '@esbuild/darwin-x64@0.19.12': + "@esbuild/darwin-x64@0.19.12": optional: true - '@esbuild/darwin-x64@0.21.5': + "@esbuild/darwin-x64@0.21.5": optional: true - '@esbuild/darwin-x64@0.23.1': + "@esbuild/darwin-x64@0.23.1": optional: true - '@esbuild/darwin-x64@0.24.2': + "@esbuild/darwin-x64@0.24.2": optional: true - '@esbuild/freebsd-arm64@0.19.12': + "@esbuild/freebsd-arm64@0.19.12": optional: true - '@esbuild/freebsd-arm64@0.21.5': + "@esbuild/freebsd-arm64@0.21.5": optional: true - '@esbuild/freebsd-arm64@0.23.1': + "@esbuild/freebsd-arm64@0.23.1": optional: true - '@esbuild/freebsd-arm64@0.24.2': + "@esbuild/freebsd-arm64@0.24.2": optional: true - '@esbuild/freebsd-x64@0.19.12': + "@esbuild/freebsd-x64@0.19.12": optional: true - '@esbuild/freebsd-x64@0.21.5': + "@esbuild/freebsd-x64@0.21.5": optional: true - '@esbuild/freebsd-x64@0.23.1': + "@esbuild/freebsd-x64@0.23.1": optional: true - '@esbuild/freebsd-x64@0.24.2': + "@esbuild/freebsd-x64@0.24.2": optional: true - '@esbuild/linux-arm64@0.19.12': + "@esbuild/linux-arm64@0.19.12": optional: true - '@esbuild/linux-arm64@0.21.5': + "@esbuild/linux-arm64@0.21.5": optional: true - '@esbuild/linux-arm64@0.23.1': + "@esbuild/linux-arm64@0.23.1": optional: true - '@esbuild/linux-arm64@0.24.2': + "@esbuild/linux-arm64@0.24.2": optional: true - '@esbuild/linux-arm@0.19.12': + "@esbuild/linux-arm@0.19.12": optional: true - '@esbuild/linux-arm@0.21.5': + "@esbuild/linux-arm@0.21.5": optional: true - '@esbuild/linux-arm@0.23.1': + "@esbuild/linux-arm@0.23.1": optional: true - '@esbuild/linux-arm@0.24.2': + "@esbuild/linux-arm@0.24.2": optional: true - '@esbuild/linux-ia32@0.19.12': + "@esbuild/linux-ia32@0.19.12": optional: true - '@esbuild/linux-ia32@0.21.5': + "@esbuild/linux-ia32@0.21.5": optional: true - '@esbuild/linux-ia32@0.23.1': + "@esbuild/linux-ia32@0.23.1": optional: true - '@esbuild/linux-ia32@0.24.2': + "@esbuild/linux-ia32@0.24.2": optional: true - '@esbuild/linux-loong64@0.19.12': + "@esbuild/linux-loong64@0.19.12": optional: true - '@esbuild/linux-loong64@0.21.5': + "@esbuild/linux-loong64@0.21.5": optional: true - '@esbuild/linux-loong64@0.23.1': + "@esbuild/linux-loong64@0.23.1": optional: true - '@esbuild/linux-loong64@0.24.2': + "@esbuild/linux-loong64@0.24.2": optional: true - '@esbuild/linux-mips64el@0.19.12': + "@esbuild/linux-mips64el@0.19.12": optional: true - '@esbuild/linux-mips64el@0.21.5': + "@esbuild/linux-mips64el@0.21.5": optional: true - '@esbuild/linux-mips64el@0.23.1': + "@esbuild/linux-mips64el@0.23.1": optional: true - '@esbuild/linux-mips64el@0.24.2': + "@esbuild/linux-mips64el@0.24.2": optional: true - '@esbuild/linux-ppc64@0.19.12': + "@esbuild/linux-ppc64@0.19.12": optional: true - '@esbuild/linux-ppc64@0.21.5': + "@esbuild/linux-ppc64@0.21.5": optional: true - '@esbuild/linux-ppc64@0.23.1': + "@esbuild/linux-ppc64@0.23.1": optional: true - '@esbuild/linux-ppc64@0.24.2': + "@esbuild/linux-ppc64@0.24.2": optional: true - '@esbuild/linux-riscv64@0.19.12': + "@esbuild/linux-riscv64@0.19.12": optional: true - '@esbuild/linux-riscv64@0.21.5': + "@esbuild/linux-riscv64@0.21.5": optional: true - '@esbuild/linux-riscv64@0.23.1': + "@esbuild/linux-riscv64@0.23.1": optional: true - '@esbuild/linux-riscv64@0.24.2': + "@esbuild/linux-riscv64@0.24.2": optional: true - '@esbuild/linux-s390x@0.19.12': + "@esbuild/linux-s390x@0.19.12": optional: true - '@esbuild/linux-s390x@0.21.5': + "@esbuild/linux-s390x@0.21.5": optional: true - '@esbuild/linux-s390x@0.23.1': + "@esbuild/linux-s390x@0.23.1": optional: true - '@esbuild/linux-s390x@0.24.2': + "@esbuild/linux-s390x@0.24.2": optional: true - '@esbuild/linux-x64@0.19.12': + "@esbuild/linux-x64@0.19.12": optional: true - '@esbuild/linux-x64@0.21.5': + "@esbuild/linux-x64@0.21.5": optional: true - '@esbuild/linux-x64@0.23.1': + "@esbuild/linux-x64@0.23.1": optional: true - '@esbuild/linux-x64@0.24.2': + "@esbuild/linux-x64@0.24.2": optional: true - '@esbuild/netbsd-arm64@0.24.2': + "@esbuild/netbsd-arm64@0.24.2": optional: true - '@esbuild/netbsd-x64@0.19.12': + "@esbuild/netbsd-x64@0.19.12": optional: true - '@esbuild/netbsd-x64@0.21.5': + "@esbuild/netbsd-x64@0.21.5": optional: true - '@esbuild/netbsd-x64@0.23.1': + "@esbuild/netbsd-x64@0.23.1": optional: true - '@esbuild/netbsd-x64@0.24.2': + "@esbuild/netbsd-x64@0.24.2": optional: true - '@esbuild/openbsd-arm64@0.23.1': + "@esbuild/openbsd-arm64@0.23.1": optional: true - '@esbuild/openbsd-arm64@0.24.2': + "@esbuild/openbsd-arm64@0.24.2": optional: true - '@esbuild/openbsd-x64@0.19.12': + "@esbuild/openbsd-x64@0.19.12": optional: true - '@esbuild/openbsd-x64@0.21.5': + "@esbuild/openbsd-x64@0.21.5": optional: true - '@esbuild/openbsd-x64@0.23.1': + "@esbuild/openbsd-x64@0.23.1": optional: true - '@esbuild/openbsd-x64@0.24.2': + "@esbuild/openbsd-x64@0.24.2": optional: true - '@esbuild/sunos-x64@0.19.12': + "@esbuild/sunos-x64@0.19.12": optional: true - '@esbuild/sunos-x64@0.21.5': + "@esbuild/sunos-x64@0.21.5": optional: true - '@esbuild/sunos-x64@0.23.1': + "@esbuild/sunos-x64@0.23.1": optional: true - '@esbuild/sunos-x64@0.24.2': + "@esbuild/sunos-x64@0.24.2": optional: true - '@esbuild/win32-arm64@0.19.12': + "@esbuild/win32-arm64@0.19.12": optional: true - '@esbuild/win32-arm64@0.21.5': + "@esbuild/win32-arm64@0.21.5": optional: true - '@esbuild/win32-arm64@0.23.1': + "@esbuild/win32-arm64@0.23.1": optional: true - '@esbuild/win32-arm64@0.24.2': + "@esbuild/win32-arm64@0.24.2": optional: true - '@esbuild/win32-ia32@0.19.12': + "@esbuild/win32-ia32@0.19.12": optional: true - '@esbuild/win32-ia32@0.21.5': + "@esbuild/win32-ia32@0.21.5": optional: true - '@esbuild/win32-ia32@0.23.1': + "@esbuild/win32-ia32@0.23.1": optional: true - '@esbuild/win32-ia32@0.24.2': + "@esbuild/win32-ia32@0.24.2": optional: true - '@esbuild/win32-x64@0.19.12': + "@esbuild/win32-x64@0.19.12": optional: true - '@esbuild/win32-x64@0.21.5': + "@esbuild/win32-x64@0.21.5": optional: true - '@esbuild/win32-x64@0.23.1': + "@esbuild/win32-x64@0.23.1": optional: true - '@esbuild/win32-x64@0.24.2': + "@esbuild/win32-x64@0.24.2": optional: true - '@eslint-community/eslint-utils@4.4.1(eslint@9.17.0(jiti@2.4.2))': + "@eslint-community/eslint-utils@4.4.1(eslint@9.17.0(jiti@2.4.2))": dependencies: eslint: 9.17.0(jiti@2.4.2) eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.12.1': {} + "@eslint-community/regexpp@4.12.1": {} - '@eslint/config-array@0.19.1': + "@eslint/config-array@0.19.1": dependencies: - '@eslint/object-schema': 2.1.5 + "@eslint/object-schema": 2.1.5 debug: 4.4.0 minimatch: 3.1.2 transitivePeerDependencies: - supports-color - '@eslint/core@0.9.1': + "@eslint/core@0.9.1": dependencies: - '@types/json-schema': 7.0.15 + "@types/json-schema": 7.0.15 - '@eslint/eslintrc@3.2.0': + "@eslint/eslintrc@3.2.0": dependencies: ajv: 6.12.6 debug: 4.4.0 @@ -10107,70 +15492,70 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.17.0': {} + "@eslint/js@9.17.0": {} - '@eslint/object-schema@2.1.5': {} + "@eslint/object-schema@2.1.5": {} - '@eslint/plugin-kit@0.2.4': + "@eslint/plugin-kit@0.2.4": dependencies: levn: 0.4.1 - '@floating-ui/core@1.6.9': + "@floating-ui/core@1.6.9": dependencies: - '@floating-ui/utils': 0.2.9 + "@floating-ui/utils": 0.2.9 - '@floating-ui/dom@1.6.13': + "@floating-ui/dom@1.6.13": dependencies: - '@floating-ui/core': 1.6.9 - '@floating-ui/utils': 0.2.9 + "@floating-ui/core": 1.6.9 + "@floating-ui/utils": 0.2.9 - '@floating-ui/react-dom@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@floating-ui/react-dom@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@floating-ui/dom': 1.6.13 + "@floating-ui/dom": 1.6.13 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@floating-ui/react@0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@floating-ui/react@0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@floating-ui/utils': 0.2.9 + "@floating-ui/react-dom": 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@floating-ui/utils": 0.2.9 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tabbable: 6.2.0 - '@floating-ui/utils@0.2.9': {} + "@floating-ui/utils@0.2.9": {} - '@gql.tada/internal@1.0.8(graphql@16.10.0)(typescript@5.7.2)': + "@gql.tada/internal@1.0.8(graphql@16.10.0)(typescript@5.7.2)": dependencies: - '@0no-co/graphql.web': 1.0.13(graphql@16.10.0) + "@0no-co/graphql.web": 1.0.13(graphql@16.10.0) graphql: 16.10.0 typescript: 5.7.2 - '@graphql-codegen/add@5.0.3(graphql@16.10.0)': + "@graphql-codegen/add@5.0.3(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) graphql: 16.10.0 tslib: 2.6.3 - '@graphql-codegen/cli@5.0.3(@parcel/watcher@2.5.0)(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0)(typescript@5.7.2)': - dependencies: - '@babel/generator': 7.26.3 - '@babel/template': 7.25.9 - '@babel/types': 7.26.3 - '@graphql-codegen/client-preset': 4.4.0(encoding@0.1.13)(graphql@16.10.0) - '@graphql-codegen/core': 4.0.2(graphql@16.10.0) - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) - '@graphql-tools/apollo-engine-loader': 8.0.12(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/code-file-loader': 8.1.13(graphql@16.10.0) - '@graphql-tools/git-loader': 8.0.17(graphql@16.10.0) - '@graphql-tools/github-loader': 8.0.12(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/graphql-file-loader': 8.0.11(graphql@16.10.0) - '@graphql-tools/json-file-loader': 8.0.11(graphql@16.10.0) - '@graphql-tools/load': 8.0.12(graphql@16.10.0) - '@graphql-tools/prisma-loader': 8.0.17(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/url-loader': 8.0.23(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) - '@whatwg-node/fetch': 0.9.23 + "@graphql-codegen/cli@5.0.3(@parcel/watcher@2.5.0)(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0)(typescript@5.7.2)": + dependencies: + "@babel/generator": 7.26.3 + "@babel/template": 7.25.9 + "@babel/types": 7.26.3 + "@graphql-codegen/client-preset": 4.4.0(encoding@0.1.13)(graphql@16.10.0) + "@graphql-codegen/core": 4.0.2(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) + "@graphql-tools/apollo-engine-loader": 8.0.12(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/code-file-loader": 8.1.13(graphql@16.10.0) + "@graphql-tools/git-loader": 8.0.17(graphql@16.10.0) + "@graphql-tools/github-loader": 8.0.12(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/graphql-file-loader": 8.0.11(graphql@16.10.0) + "@graphql-tools/json-file-loader": 8.0.11(graphql@16.10.0) + "@graphql-tools/load": 8.0.12(graphql@16.10.0) + "@graphql-tools/prisma-loader": 8.0.17(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/url-loader": 8.0.23(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) + "@whatwg-node/fetch": 0.9.23 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.7.2) debounce: 1.2.1 @@ -10191,9 +15576,9 @@ snapshots: yaml: 2.7.0 yargs: 17.7.2 optionalDependencies: - '@parcel/watcher': 2.5.0 + "@parcel/watcher": 2.5.0 transitivePeerDependencies: - - '@types/node' + - "@types/node" - bufferutil - cosmiconfig-toml-loader - encoding @@ -10202,39 +15587,39 @@ snapshots: - typescript - utf-8-validate - '@graphql-codegen/client-preset@4.4.0(encoding@0.1.13)(graphql@16.10.0)': - dependencies: - '@babel/helper-plugin-utils': 7.25.9 - '@babel/template': 7.25.9 - '@graphql-codegen/add': 5.0.3(graphql@16.10.0) - '@graphql-codegen/gql-tag-operations': 4.0.10(encoding@0.1.13)(graphql@16.10.0) - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) - '@graphql-codegen/typed-document-node': 5.0.12(encoding@0.1.13)(graphql@16.10.0) - '@graphql-codegen/typescript': 4.1.2(encoding@0.1.13)(graphql@16.10.0) - '@graphql-codegen/typescript-operations': 4.4.0(encoding@0.1.13)(graphql@16.10.0) - '@graphql-codegen/visitor-plugin-common': 5.6.0(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/documents': 1.0.1(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) + "@graphql-codegen/client-preset@4.4.0(encoding@0.1.13)(graphql@16.10.0)": + dependencies: + "@babel/helper-plugin-utils": 7.25.9 + "@babel/template": 7.25.9 + "@graphql-codegen/add": 5.0.3(graphql@16.10.0) + "@graphql-codegen/gql-tag-operations": 4.0.10(encoding@0.1.13)(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) + "@graphql-codegen/typed-document-node": 5.0.12(encoding@0.1.13)(graphql@16.10.0) + "@graphql-codegen/typescript": 4.1.2(encoding@0.1.13)(graphql@16.10.0) + "@graphql-codegen/typescript-operations": 4.4.0(encoding@0.1.13)(graphql@16.10.0) + "@graphql-codegen/visitor-plugin-common": 5.6.0(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/documents": 1.0.1(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) + "@graphql-typed-document-node/core": 3.2.0(graphql@16.10.0) graphql: 16.10.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/core@4.0.2(graphql@16.10.0)': + "@graphql-codegen/core@4.0.2(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) - '@graphql-tools/schema': 10.0.16(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) + "@graphql-tools/schema": 10.0.16(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 tslib: 2.6.3 - '@graphql-codegen/gql-tag-operations@4.0.10(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-codegen/gql-tag-operations@4.0.10(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) - '@graphql-codegen/visitor-plugin-common': 5.4.0(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) + "@graphql-codegen/visitor-plugin-common": 5.4.0(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) auto-bind: 4.0.0 graphql: 16.10.0 tslib: 2.6.3 @@ -10242,19 +15627,19 @@ snapshots: - encoding - supports-color - '@graphql-codegen/introspection@4.0.3(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-codegen/introspection@4.0.3(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) - '@graphql-codegen/visitor-plugin-common': 5.6.0(encoding@0.1.13)(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) + "@graphql-codegen/visitor-plugin-common": 5.6.0(encoding@0.1.13)(graphql@16.10.0) graphql: 16.10.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color - '@graphql-codegen/plugin-helpers@2.7.2(graphql@16.10.0)': + "@graphql-codegen/plugin-helpers@2.7.2(graphql@16.10.0)": dependencies: - '@graphql-tools/utils': 8.13.1(graphql@16.10.0) + "@graphql-tools/utils": 8.13.1(graphql@16.10.0) change-case-all: 1.0.14 common-tags: 1.8.2 graphql: 16.10.0 @@ -10262,9 +15647,9 @@ snapshots: lodash: 4.17.21 tslib: 2.4.1 - '@graphql-codegen/plugin-helpers@3.1.2(graphql@16.10.0)': + "@graphql-codegen/plugin-helpers@3.1.2(graphql@16.10.0)": dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.10.0) + "@graphql-tools/utils": 9.2.1(graphql@16.10.0) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.10.0 @@ -10272,9 +15657,9 @@ snapshots: lodash: 4.17.21 tslib: 2.4.1 - '@graphql-codegen/plugin-helpers@5.1.0(graphql@16.10.0)': + "@graphql-codegen/plugin-helpers@5.1.0(graphql@16.10.0)": dependencies: - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.10.0 @@ -10282,17 +15667,17 @@ snapshots: lodash: 4.17.21 tslib: 2.6.3 - '@graphql-codegen/schema-ast@4.1.0(graphql@16.10.0)': + "@graphql-codegen/schema-ast@4.1.0(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 tslib: 2.6.3 - '@graphql-codegen/typed-document-node@5.0.12(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-codegen/typed-document-node@5.0.12(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) - '@graphql-codegen/visitor-plugin-common': 5.6.0(encoding@0.1.13)(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) + "@graphql-codegen/visitor-plugin-common": 5.6.0(encoding@0.1.13)(graphql@16.10.0) auto-bind: 4.0.0 change-case-all: 1.0.15 graphql: 16.10.0 @@ -10301,11 +15686,11 @@ snapshots: - encoding - supports-color - '@graphql-codegen/typescript-operations@4.4.0(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-codegen/typescript-operations@4.4.0(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) - '@graphql-codegen/typescript': 4.1.2(encoding@0.1.13)(graphql@16.10.0) - '@graphql-codegen/visitor-plugin-common': 5.6.0(encoding@0.1.13)(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) + "@graphql-codegen/typescript": 4.1.2(encoding@0.1.13)(graphql@16.10.0) + "@graphql-codegen/visitor-plugin-common": 5.6.0(encoding@0.1.13)(graphql@16.10.0) auto-bind: 4.0.0 graphql: 16.10.0 tslib: 2.6.3 @@ -10313,10 +15698,10 @@ snapshots: - encoding - supports-color - '@graphql-codegen/typescript-react-query@6.1.0(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-codegen/typescript-react-query@6.1.0(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.10.0) - '@graphql-codegen/visitor-plugin-common': 2.13.1(encoding@0.1.13)(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 3.1.2(graphql@16.10.0) + "@graphql-codegen/visitor-plugin-common": 2.13.1(encoding@0.1.13)(graphql@16.10.0) auto-bind: 4.0.0 change-case-all: 1.0.15 graphql: 16.10.0 @@ -10325,11 +15710,11 @@ snapshots: - encoding - supports-color - '@graphql-codegen/typescript@4.1.2(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-codegen/typescript@4.1.2(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) - '@graphql-codegen/schema-ast': 4.1.0(graphql@16.10.0) - '@graphql-codegen/visitor-plugin-common': 5.6.0(encoding@0.1.13)(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) + "@graphql-codegen/schema-ast": 4.1.0(graphql@16.10.0) + "@graphql-codegen/visitor-plugin-common": 5.6.0(encoding@0.1.13)(graphql@16.10.0) auto-bind: 4.0.0 graphql: 16.10.0 tslib: 2.6.3 @@ -10337,12 +15722,12 @@ snapshots: - encoding - supports-color - '@graphql-codegen/visitor-plugin-common@2.13.1(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-codegen/visitor-plugin-common@2.13.1(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.10.0) - '@graphql-tools/optimize': 1.4.0(graphql@16.10.0) - '@graphql-tools/relay-operation-optimizer': 6.5.18(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/utils': 8.13.1(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 2.7.2(graphql@16.10.0) + "@graphql-tools/optimize": 1.4.0(graphql@16.10.0) + "@graphql-tools/relay-operation-optimizer": 6.5.18(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/utils": 8.13.1(graphql@16.10.0) auto-bind: 4.0.0 change-case-all: 1.0.14 dependency-graph: 0.11.0 @@ -10354,12 +15739,12 @@ snapshots: - encoding - supports-color - '@graphql-codegen/visitor-plugin-common@5.4.0(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-codegen/visitor-plugin-common@5.4.0(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) - '@graphql-tools/optimize': 2.0.0(graphql@16.10.0) - '@graphql-tools/relay-operation-optimizer': 7.0.11(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) + "@graphql-tools/optimize": 2.0.0(graphql@16.10.0) + "@graphql-tools/relay-operation-optimizer": 7.0.11(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 @@ -10371,12 +15756,12 @@ snapshots: - encoding - supports-color - '@graphql-codegen/visitor-plugin-common@5.6.0(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-codegen/visitor-plugin-common@5.6.0(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0) - '@graphql-tools/optimize': 2.0.0(graphql@16.10.0) - '@graphql-tools/relay-operation-optimizer': 7.0.11(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-codegen/plugin-helpers": 5.1.0(graphql@16.10.0) + "@graphql-tools/optimize": 2.0.0(graphql@16.10.0) + "@graphql-tools/relay-operation-optimizer": 7.0.11(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 @@ -10388,33 +15773,33 @@ snapshots: - encoding - supports-color - '@graphql-hive/gateway-abort-signal-any@0.0.3(graphql@16.10.0)': + "@graphql-hive/gateway-abort-signal-any@0.0.3(graphql@16.10.0)": dependencies: - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 tslib: 2.8.1 - '@graphql-tools/apollo-engine-loader@8.0.12(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-tools/apollo-engine-loader@8.0.12(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) - '@whatwg-node/fetch': 0.10.1 + "@ardatan/sync-fetch": 0.0.1(encoding@0.1.13) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) + "@whatwg-node/fetch": 0.10.1 graphql: 16.10.0 tslib: 2.8.1 transitivePeerDependencies: - encoding - '@graphql-tools/batch-execute@9.0.11(graphql@16.10.0)': + "@graphql-tools/batch-execute@9.0.11(graphql@16.10.0)": dependencies: - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) dataloader: 2.2.3 graphql: 16.10.0 tslib: 2.8.1 - '@graphql-tools/code-file-loader@8.1.13(graphql@16.10.0)': + "@graphql-tools/code-file-loader@8.1.13(graphql@16.10.0)": dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.12(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/graphql-tag-pluck": 8.3.12(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) globby: 11.1.0 graphql: 16.10.0 tslib: 2.8.1 @@ -10422,35 +15807,35 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/delegate@10.2.9(graphql@16.10.0)': + "@graphql-tools/delegate@10.2.9(graphql@16.10.0)": dependencies: - '@graphql-tools/batch-execute': 9.0.11(graphql@16.10.0) - '@graphql-tools/executor': 1.3.12(graphql@16.10.0) - '@graphql-tools/schema': 10.0.16(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) - '@repeaterjs/repeater': 3.0.6 + "@graphql-tools/batch-execute": 9.0.11(graphql@16.10.0) + "@graphql-tools/executor": 1.3.12(graphql@16.10.0) + "@graphql-tools/schema": 10.0.16(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) + "@repeaterjs/repeater": 3.0.6 dataloader: 2.2.3 dset: 3.1.4 graphql: 16.10.0 tslib: 2.8.1 - '@graphql-tools/documents@1.0.1(graphql@16.10.0)': + "@graphql-tools/documents@1.0.1(graphql@16.10.0)": dependencies: graphql: 16.10.0 lodash.sortby: 4.7.0 tslib: 2.6.3 - '@graphql-tools/executor-common@0.0.1(graphql@16.10.0)': + "@graphql-tools/executor-common@0.0.1(graphql@16.10.0)": dependencies: - '@envelop/core': 5.0.2 - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@envelop/core": 5.0.2 + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 - '@graphql-tools/executor-graphql-ws@1.3.7(graphql@16.10.0)': + "@graphql-tools/executor-graphql-ws@1.3.7(graphql@16.10.0)": dependencies: - '@graphql-tools/executor-common': 0.0.1(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) - '@whatwg-node/disposablestack': 0.0.5 + "@graphql-tools/executor-common": 0.0.1(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) + "@whatwg-node/disposablestack": 0.0.5 graphql: 16.10.0 graphql-ws: 5.16.0(graphql@16.10.0) isomorphic-ws: 5.0.0(ws@8.18.0) @@ -10460,26 +15845,26 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.2.4(@types/node@20.17.12)(graphql@16.10.0)': + "@graphql-tools/executor-http@1.2.4(@types/node@20.17.12)(graphql@16.10.0)": dependencies: - '@graphql-hive/gateway-abort-signal-any': 0.0.3(graphql@16.10.0) - '@graphql-tools/executor-common': 0.0.1(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) - '@repeaterjs/repeater': 3.0.6 - '@whatwg-node/disposablestack': 0.0.5 - '@whatwg-node/fetch': 0.10.1 + "@graphql-hive/gateway-abort-signal-any": 0.0.3(graphql@16.10.0) + "@graphql-tools/executor-common": 0.0.1(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) + "@repeaterjs/repeater": 3.0.6 + "@whatwg-node/disposablestack": 0.0.5 + "@whatwg-node/fetch": 0.10.1 extract-files: 11.0.0 graphql: 16.10.0 meros: 1.3.0(@types/node@20.17.12) tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: - - '@types/node' + - "@types/node" - '@graphql-tools/executor-legacy-ws@1.1.10(graphql@16.10.0)': + "@graphql-tools/executor-legacy-ws@1.1.10(graphql@16.10.0)": dependencies: - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) - '@types/ws': 8.5.13 + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) + "@types/ws": 8.5.13 graphql: 16.10.0 isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.8.1 @@ -10488,20 +15873,20 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor@1.3.12(graphql@16.10.0)': + "@graphql-tools/executor@1.3.12(graphql@16.10.0)": dependencies: - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) - '@repeaterjs/repeater': 3.0.6 - '@whatwg-node/disposablestack': 0.0.5 + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) + "@graphql-typed-document-node/core": 3.2.0(graphql@16.10.0) + "@repeaterjs/repeater": 3.0.6 + "@whatwg-node/disposablestack": 0.0.5 graphql: 16.10.0 tslib: 2.8.1 value-or-promise: 1.0.12 - '@graphql-tools/git-loader@8.0.17(graphql@16.10.0)': + "@graphql-tools/git-loader@8.0.17(graphql@16.10.0)": dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.12(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/graphql-tag-pluck": 8.3.12(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 is-glob: 4.0.3 micromatch: 4.0.8 @@ -10510,88 +15895,88 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.12(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-tools/github-loader@8.0.12(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/executor-http': 1.2.4(@types/node@20.17.12)(graphql@16.10.0) - '@graphql-tools/graphql-tag-pluck': 8.3.12(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) - '@whatwg-node/fetch': 0.10.1 + "@ardatan/sync-fetch": 0.0.1(encoding@0.1.13) + "@graphql-tools/executor-http": 1.2.4(@types/node@20.17.12)(graphql@16.10.0) + "@graphql-tools/graphql-tag-pluck": 8.3.12(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) + "@whatwg-node/fetch": 0.10.1 graphql: 16.10.0 tslib: 2.8.1 value-or-promise: 1.0.12 transitivePeerDependencies: - - '@types/node' + - "@types/node" - encoding - supports-color - '@graphql-tools/graphql-file-loader@8.0.11(graphql@16.10.0)': + "@graphql-tools/graphql-file-loader@8.0.11(graphql@16.10.0)": dependencies: - '@graphql-tools/import': 7.0.11(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/import": 7.0.11(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) globby: 11.1.0 graphql: 16.10.0 tslib: 2.8.1 unixify: 1.0.0 - '@graphql-tools/graphql-tag-pluck@8.3.12(graphql@16.10.0)': + "@graphql-tools/graphql-tag-pluck@8.3.12(graphql@16.10.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/parser': 7.26.3 - '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0) - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@babel/core": 7.26.0 + "@babel/parser": 7.26.3 + "@babel/plugin-syntax-import-assertions": 7.26.0(@babel/core@7.26.0) + "@babel/traverse": 7.26.4 + "@babel/types": 7.26.3 + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - '@graphql-tools/import@7.0.11(graphql@16.10.0)': + "@graphql-tools/import@7.0.11(graphql@16.10.0)": dependencies: - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 resolve-from: 5.0.0 tslib: 2.8.1 - '@graphql-tools/json-file-loader@8.0.11(graphql@16.10.0)': + "@graphql-tools/json-file-loader@8.0.11(graphql@16.10.0)": dependencies: - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) globby: 11.1.0 graphql: 16.10.0 tslib: 2.8.1 unixify: 1.0.0 - '@graphql-tools/load@8.0.12(graphql@16.10.0)': + "@graphql-tools/load@8.0.12(graphql@16.10.0)": dependencies: - '@graphql-tools/schema': 10.0.16(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/schema": 10.0.16(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 p-limit: 3.1.0 tslib: 2.8.1 - '@graphql-tools/merge@9.0.17(graphql@16.10.0)': + "@graphql-tools/merge@9.0.17(graphql@16.10.0)": dependencies: - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 tslib: 2.8.1 - '@graphql-tools/optimize@1.4.0(graphql@16.10.0)': + "@graphql-tools/optimize@1.4.0(graphql@16.10.0)": dependencies: graphql: 16.10.0 tslib: 2.6.3 - '@graphql-tools/optimize@2.0.0(graphql@16.10.0)': + "@graphql-tools/optimize@2.0.0(graphql@16.10.0)": dependencies: graphql: 16.10.0 tslib: 2.6.3 - '@graphql-tools/prisma-loader@8.0.17(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-tools/prisma-loader@8.0.17(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@graphql-tools/url-loader': 8.0.23(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) - '@types/js-yaml': 4.0.9 - '@whatwg-node/fetch': 0.10.1 + "@graphql-tools/url-loader": 8.0.23(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) + "@types/js-yaml": 4.0.9 + "@whatwg-node/fetch": 0.10.1 chalk: 4.1.2 debug: 4.4.0 dotenv: 16.4.7 @@ -10606,119 +15991,119 @@ snapshots: tslib: 2.8.1 yaml-ast-parser: 0.0.43 transitivePeerDependencies: - - '@types/node' + - "@types/node" - bufferutil - encoding - supports-color - utf-8-validate - '@graphql-tools/relay-operation-optimizer@6.5.18(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-tools/relay-operation-optimizer@6.5.18(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/utils': 9.2.1(graphql@16.10.0) + "@ardatan/relay-compiler": 12.0.0(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/utils": 9.2.1(graphql@16.10.0) graphql: 16.10.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color - '@graphql-tools/relay-operation-optimizer@7.0.11(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-tools/relay-operation-optimizer@7.0.11(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@ardatan/relay-compiler": 12.0.0(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color - '@graphql-tools/schema@10.0.16(graphql@16.10.0)': + "@graphql-tools/schema@10.0.16(graphql@16.10.0)": dependencies: - '@graphql-tools/merge': 9.0.17(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/merge": 9.0.17(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 tslib: 2.8.1 value-or-promise: 1.0.12 - '@graphql-tools/url-loader@8.0.23(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0)': + "@graphql-tools/url-loader@8.0.23(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0)": dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/executor-graphql-ws': 1.3.7(graphql@16.10.0) - '@graphql-tools/executor-http': 1.2.4(@types/node@20.17.12)(graphql@16.10.0) - '@graphql-tools/executor-legacy-ws': 1.1.10(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) - '@graphql-tools/wrap': 10.0.27(graphql@16.10.0) - '@types/ws': 8.5.13 - '@whatwg-node/fetch': 0.10.1 + "@ardatan/sync-fetch": 0.0.1(encoding@0.1.13) + "@graphql-tools/executor-graphql-ws": 1.3.7(graphql@16.10.0) + "@graphql-tools/executor-http": 1.2.4(@types/node@20.17.12)(graphql@16.10.0) + "@graphql-tools/executor-legacy-ws": 1.1.10(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) + "@graphql-tools/wrap": 10.0.27(graphql@16.10.0) + "@types/ws": 8.5.13 + "@whatwg-node/fetch": 0.10.1 graphql: 16.10.0 isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.8.1 value-or-promise: 1.0.12 ws: 8.18.0 transitivePeerDependencies: - - '@types/node' + - "@types/node" - bufferutil - encoding - utf-8-validate - '@graphql-tools/utils@10.7.2(graphql@16.10.0)': + "@graphql-tools/utils@10.7.2(graphql@16.10.0)": dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) + "@graphql-typed-document-node/core": 3.2.0(graphql@16.10.0) cross-inspect: 1.0.1 dset: 3.1.4 graphql: 16.10.0 tslib: 2.8.1 - '@graphql-tools/utils@8.13.1(graphql@16.10.0)': + "@graphql-tools/utils@8.13.1(graphql@16.10.0)": dependencies: graphql: 16.10.0 tslib: 2.6.3 - '@graphql-tools/utils@9.2.1(graphql@16.10.0)': + "@graphql-tools/utils@9.2.1(graphql@16.10.0)": dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) + "@graphql-typed-document-node/core": 3.2.0(graphql@16.10.0) graphql: 16.10.0 tslib: 2.6.3 - '@graphql-tools/wrap@10.0.27(graphql@16.10.0)': + "@graphql-tools/wrap@10.0.27(graphql@16.10.0)": dependencies: - '@graphql-tools/delegate': 10.2.9(graphql@16.10.0) - '@graphql-tools/schema': 10.0.16(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/delegate": 10.2.9(graphql@16.10.0) + "@graphql-tools/schema": 10.0.16(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) graphql: 16.10.0 tslib: 2.8.1 - '@graphql-typed-document-node/core@3.2.0(graphql@16.10.0)': + "@graphql-typed-document-node/core@3.2.0(graphql@16.10.0)": dependencies: graphql: 16.10.0 - '@headlessui/react@2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@headlessui/react@2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@floating-ui/react': 0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/focus': 3.19.0(react@18.3.1) - '@react-aria/interactions': 3.22.5(react@18.3.1) - '@tanstack/react-virtual': 3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@floating-ui/react": 0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@react-aria/focus": 3.19.0(react@18.3.1) + "@react-aria/interactions": 3.22.5(react@18.3.1) + "@tanstack/react-virtual": 3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@hono/node-server@1.13.7(hono@3.12.12)': + "@hono/node-server@1.13.7(hono@3.12.12)": dependencies: hono: 3.12.12 - '@humanfs/core@0.19.1': {} + "@humanfs/core@0.19.1": {} - '@humanfs/node@0.16.6': + "@humanfs/node@0.16.6": dependencies: - '@humanfs/core': 0.19.1 - '@humanwhocodes/retry': 0.3.1 + "@humanfs/core": 0.19.1 + "@humanwhocodes/retry": 0.3.1 - '@humanwhocodes/module-importer@1.0.1': {} + "@humanwhocodes/module-importer@1.0.1": {} - '@humanwhocodes/retry@0.3.1': {} + "@humanwhocodes/retry@0.3.1": {} - '@humanwhocodes/retry@0.4.1': {} + "@humanwhocodes/retry@0.4.1": {} - '@isaacs/cliui@8.0.2': + "@isaacs/cliui@8.0.2": dependencies: string-width: 5.1.2 string-width-cjs: string-width@4.2.3 @@ -10727,17 +16112,17 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - '@isaacs/fs-minipass@4.0.1': + "@isaacs/fs-minipass@4.0.1": dependencies: minipass: 7.1.2 - '@istanbuljs/schema@0.1.3': {} + "@istanbuljs/schema@0.1.3": {} - '@jest/schemas@29.6.3': + "@jest/schemas@29.6.3": dependencies: - '@sinclair/typebox': 0.27.8 + "@sinclair/typebox": 0.27.8 - '@joshwooding/vite-plugin-react-docgen-typescript@0.4.2(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))': + "@joshwooding/vite-plugin-react-docgen-typescript@0.4.2(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))": dependencies: magic-string: 0.27.0 react-docgen-typescript: 2.2.2(typescript@5.7.2) @@ -10745,31 +16130,31 @@ snapshots: optionalDependencies: typescript: 5.7.2 - '@jridgewell/gen-mapping@0.3.8': + "@jridgewell/gen-mapping@0.3.8": dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/set-array": 1.2.1 + "@jridgewell/sourcemap-codec": 1.5.0 + "@jridgewell/trace-mapping": 0.3.25 - '@jridgewell/resolve-uri@3.1.2': {} + "@jridgewell/resolve-uri@3.1.2": {} - '@jridgewell/set-array@1.2.1': {} + "@jridgewell/set-array@1.2.1": {} - '@jridgewell/source-map@0.3.6': + "@jridgewell/source-map@0.3.6": dependencies: - '@jridgewell/gen-mapping': 0.3.8 - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/gen-mapping": 0.3.8 + "@jridgewell/trace-mapping": 0.3.25 - '@jridgewell/sourcemap-codec@1.5.0': {} + "@jridgewell/sourcemap-codec@1.5.0": {} - '@jridgewell/trace-mapping@0.3.25': + "@jridgewell/trace-mapping@0.3.25": dependencies: - '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.0 + "@jridgewell/resolve-uri": 3.1.2 + "@jridgewell/sourcemap-codec": 1.5.0 - '@kamilkisiela/fast-url-parser@1.1.4': {} + "@kamilkisiela/fast-url-parser@1.1.4": {} - '@latticexyz/schema-type@2.0.12(typescript@5.7.2)(zod@3.24.1)': + "@latticexyz/schema-type@2.0.12(typescript@5.7.2)(zod@3.24.1)": dependencies: abitype: 1.0.0(typescript@5.7.2)(zod@3.24.1) viem: 2.9.20(typescript@5.7.2)(zod@3.24.1) @@ -10779,29 +16164,29 @@ snapshots: - utf-8-validate - zod - '@latticexyz/utils@2.0.12': + "@latticexyz/utils@2.0.12": dependencies: mobx: 6.13.5 proxy-deep: 3.1.1 rxjs: 7.5.5 - '@latticexyz/utils@2.2.14': + "@latticexyz/utils@2.2.14": dependencies: mobx: 6.13.5 proxy-deep: 3.1.1 rxjs: 7.5.5 - '@manypkg/find-root@2.2.3': + "@manypkg/find-root@2.2.3": dependencies: - '@manypkg/tools': 1.1.2 + "@manypkg/tools": 1.1.2 - '@manypkg/tools@1.1.2': + "@manypkg/tools@1.1.2": dependencies: fast-glob: 3.3.3 jju: 1.4.0 js-yaml: 4.1.0 - '@mapbox/node-pre-gyp@2.0.0-rc.0(encoding@0.1.13)': + "@mapbox/node-pre-gyp@2.0.0-rc.0(encoding@0.1.13)": dependencies: consola: 3.3.3 detect-libc: 2.0.3 @@ -10814,12 +16199,12 @@ snapshots: - encoding - supports-color - '@mdx-js/mdx@3.1.0(acorn@8.14.0)': + "@mdx-js/mdx@3.1.0(acorn@8.14.0)": dependencies: - '@types/estree': 1.0.6 - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 - '@types/mdx': 2.0.13 + "@types/estree": 1.0.6 + "@types/estree-jsx": 1.0.5 + "@types/hast": 3.0.4 + "@types/mdx": 2.0.13 collapse-white-space: 2.1.0 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 @@ -10844,16 +16229,16 @@ snapshots: - acorn - supports-color - '@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.3.1)': + "@mdx-js/react@3.1.0(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@types/mdx': 2.0.13 - '@types/react': 18.3.18 + "@types/mdx": 2.0.13 + "@types/react": 18.3.18 react: 18.3.1 - '@mdx-js/rollup@3.1.0(acorn@8.14.0)(rollup@4.30.1)': + "@mdx-js/rollup@3.1.0(acorn@8.14.0)(rollup@4.30.1)": dependencies: - '@mdx-js/mdx': 3.1.0(acorn@8.14.0) - '@rollup/pluginutils': 5.1.4(rollup@4.30.1) + "@mdx-js/mdx": 3.1.0(acorn@8.14.0) + "@rollup/pluginutils": 5.1.4(rollup@4.30.1) rollup: 4.30.1 source-map: 0.7.4 vfile: 6.0.3 @@ -10861,882 +16246,882 @@ snapshots: - acorn - supports-color - '@module-federation/runtime@0.1.21': + "@module-federation/runtime@0.1.21": dependencies: - '@module-federation/sdk': 0.1.21 + "@module-federation/sdk": 0.1.21 - '@module-federation/sdk@0.1.21': {} + "@module-federation/sdk@0.1.21": {} - '@noble/curves@1.0.0': + "@noble/curves@1.0.0": dependencies: - '@noble/hashes': 1.3.0 + "@noble/hashes": 1.3.0 - '@noble/curves@1.2.0': + "@noble/curves@1.2.0": dependencies: - '@noble/hashes': 1.3.2 + "@noble/hashes": 1.3.2 - '@noble/curves@1.3.0': + "@noble/curves@1.3.0": dependencies: - '@noble/hashes': 1.3.3 + "@noble/hashes": 1.3.3 - '@noble/curves@1.4.2': + "@noble/curves@1.4.2": dependencies: - '@noble/hashes': 1.4.0 + "@noble/hashes": 1.4.0 - '@noble/curves@1.7.0': + "@noble/curves@1.7.0": dependencies: - '@noble/hashes': 1.6.0 + "@noble/hashes": 1.6.0 - '@noble/curves@1.8.0': + "@noble/curves@1.8.0": dependencies: - '@noble/hashes': 1.7.0 + "@noble/hashes": 1.7.0 - '@noble/hashes@1.3.0': {} + "@noble/hashes@1.3.0": {} - '@noble/hashes@1.3.2': {} + "@noble/hashes@1.3.2": {} - '@noble/hashes@1.3.3': {} + "@noble/hashes@1.3.3": {} - '@noble/hashes@1.4.0': {} + "@noble/hashes@1.4.0": {} - '@noble/hashes@1.6.0': {} + "@noble/hashes@1.6.0": {} - '@noble/hashes@1.6.1': {} + "@noble/hashes@1.6.1": {} - '@noble/hashes@1.7.0': {} + "@noble/hashes@1.7.0": {} - '@nodelib/fs.scandir@2.1.5': + "@nodelib/fs.scandir@2.1.5": dependencies: - '@nodelib/fs.stat': 2.0.5 + "@nodelib/fs.stat": 2.0.5 run-parallel: 1.2.0 - '@nodelib/fs.stat@2.0.5': {} + "@nodelib/fs.stat@2.0.5": {} - '@nodelib/fs.walk@1.2.8': + "@nodelib/fs.walk@1.2.8": dependencies: - '@nodelib/fs.scandir': 2.1.5 + "@nodelib/fs.scandir": 2.1.5 fastq: 1.18.0 - '@octokit/auth-token@4.0.0': {} + "@octokit/auth-token@4.0.0": {} - '@octokit/core@5.2.0': + "@octokit/core@5.2.0": dependencies: - '@octokit/auth-token': 4.0.0 - '@octokit/graphql': 7.1.0 - '@octokit/request': 8.4.0 - '@octokit/request-error': 5.1.0 - '@octokit/types': 13.6.2 + "@octokit/auth-token": 4.0.0 + "@octokit/graphql": 7.1.0 + "@octokit/request": 8.4.0 + "@octokit/request-error": 5.1.0 + "@octokit/types": 13.6.2 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 - '@octokit/endpoint@9.0.5': + "@octokit/endpoint@9.0.5": dependencies: - '@octokit/types': 13.6.2 + "@octokit/types": 13.6.2 universal-user-agent: 6.0.1 - '@octokit/graphql@7.1.0': + "@octokit/graphql@7.1.0": dependencies: - '@octokit/request': 8.4.0 - '@octokit/types': 13.6.2 + "@octokit/request": 8.4.0 + "@octokit/types": 13.6.2 universal-user-agent: 6.0.1 - '@octokit/openapi-types@22.2.0': {} + "@octokit/openapi-types@22.2.0": {} - '@octokit/plugin-paginate-rest@11.3.1(@octokit/core@5.2.0)': + "@octokit/plugin-paginate-rest@11.3.1(@octokit/core@5.2.0)": dependencies: - '@octokit/core': 5.2.0 - '@octokit/types': 13.6.2 + "@octokit/core": 5.2.0 + "@octokit/types": 13.6.2 - '@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.0)': + "@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.0)": dependencies: - '@octokit/core': 5.2.0 + "@octokit/core": 5.2.0 - '@octokit/plugin-rest-endpoint-methods@13.2.2(@octokit/core@5.2.0)': + "@octokit/plugin-rest-endpoint-methods@13.2.2(@octokit/core@5.2.0)": dependencies: - '@octokit/core': 5.2.0 - '@octokit/types': 13.6.2 + "@octokit/core": 5.2.0 + "@octokit/types": 13.6.2 - '@octokit/request-error@5.1.0': + "@octokit/request-error@5.1.0": dependencies: - '@octokit/types': 13.6.2 + "@octokit/types": 13.6.2 deprecation: 2.3.1 once: 1.4.0 - '@octokit/request@8.4.0': + "@octokit/request@8.4.0": dependencies: - '@octokit/endpoint': 9.0.5 - '@octokit/request-error': 5.1.0 - '@octokit/types': 13.6.2 + "@octokit/endpoint": 9.0.5 + "@octokit/request-error": 5.1.0 + "@octokit/types": 13.6.2 universal-user-agent: 6.0.1 - '@octokit/rest@20.1.1': + "@octokit/rest@20.1.1": dependencies: - '@octokit/core': 5.2.0 - '@octokit/plugin-paginate-rest': 11.3.1(@octokit/core@5.2.0) - '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.0) - '@octokit/plugin-rest-endpoint-methods': 13.2.2(@octokit/core@5.2.0) + "@octokit/core": 5.2.0 + "@octokit/plugin-paginate-rest": 11.3.1(@octokit/core@5.2.0) + "@octokit/plugin-request-log": 4.0.1(@octokit/core@5.2.0) + "@octokit/plugin-rest-endpoint-methods": 13.2.2(@octokit/core@5.2.0) - '@octokit/types@13.6.2': + "@octokit/types@13.6.2": dependencies: - '@octokit/openapi-types': 22.2.0 + "@octokit/openapi-types": 22.2.0 - '@parcel/watcher-android-arm64@2.5.0': + "@parcel/watcher-android-arm64@2.5.0": optional: true - '@parcel/watcher-darwin-arm64@2.5.0': + "@parcel/watcher-darwin-arm64@2.5.0": optional: true - '@parcel/watcher-darwin-x64@2.5.0': + "@parcel/watcher-darwin-x64@2.5.0": optional: true - '@parcel/watcher-freebsd-x64@2.5.0': + "@parcel/watcher-freebsd-x64@2.5.0": optional: true - '@parcel/watcher-linux-arm-glibc@2.5.0': + "@parcel/watcher-linux-arm-glibc@2.5.0": optional: true - '@parcel/watcher-linux-arm-musl@2.5.0': + "@parcel/watcher-linux-arm-musl@2.5.0": optional: true - '@parcel/watcher-linux-arm64-glibc@2.5.0': + "@parcel/watcher-linux-arm64-glibc@2.5.0": optional: true - '@parcel/watcher-linux-arm64-musl@2.5.0': + "@parcel/watcher-linux-arm64-musl@2.5.0": optional: true - '@parcel/watcher-linux-x64-glibc@2.5.0': + "@parcel/watcher-linux-x64-glibc@2.5.0": optional: true - '@parcel/watcher-linux-x64-musl@2.5.0': + "@parcel/watcher-linux-x64-musl@2.5.0": optional: true - '@parcel/watcher-win32-arm64@2.5.0': + "@parcel/watcher-win32-arm64@2.5.0": optional: true - '@parcel/watcher-win32-ia32@2.5.0': + "@parcel/watcher-win32-ia32@2.5.0": optional: true - '@parcel/watcher-win32-x64@2.5.0': + "@parcel/watcher-win32-x64@2.5.0": optional: true - '@parcel/watcher@2.5.0': + "@parcel/watcher@2.5.0": dependencies: detect-libc: 1.0.3 is-glob: 4.0.3 micromatch: 4.0.8 node-addon-api: 7.1.1 optionalDependencies: - '@parcel/watcher-android-arm64': 2.5.0 - '@parcel/watcher-darwin-arm64': 2.5.0 - '@parcel/watcher-darwin-x64': 2.5.0 - '@parcel/watcher-freebsd-x64': 2.5.0 - '@parcel/watcher-linux-arm-glibc': 2.5.0 - '@parcel/watcher-linux-arm-musl': 2.5.0 - '@parcel/watcher-linux-arm64-glibc': 2.5.0 - '@parcel/watcher-linux-arm64-musl': 2.5.0 - '@parcel/watcher-linux-x64-glibc': 2.5.0 - '@parcel/watcher-linux-x64-musl': 2.5.0 - '@parcel/watcher-win32-arm64': 2.5.0 - '@parcel/watcher-win32-ia32': 2.5.0 - '@parcel/watcher-win32-x64': 2.5.0 - - '@pkgjs/parseargs@0.11.0': + "@parcel/watcher-android-arm64": 2.5.0 + "@parcel/watcher-darwin-arm64": 2.5.0 + "@parcel/watcher-darwin-x64": 2.5.0 + "@parcel/watcher-freebsd-x64": 2.5.0 + "@parcel/watcher-linux-arm-glibc": 2.5.0 + "@parcel/watcher-linux-arm-musl": 2.5.0 + "@parcel/watcher-linux-arm64-glibc": 2.5.0 + "@parcel/watcher-linux-arm64-musl": 2.5.0 + "@parcel/watcher-linux-x64-glibc": 2.5.0 + "@parcel/watcher-linux-x64-musl": 2.5.0 + "@parcel/watcher-win32-arm64": 2.5.0 + "@parcel/watcher-win32-ia32": 2.5.0 + "@parcel/watcher-win32-x64": 2.5.0 + + "@pkgjs/parseargs@0.11.0": optional: true - '@polka/url@1.0.0-next.28': {} + "@polka/url@1.0.0-next.28": {} - '@radix-ui/colors@3.0.0': {} + "@radix-ui/colors@3.0.0": {} - '@radix-ui/number@1.1.0': {} + "@radix-ui/number@1.1.0": {} - '@radix-ui/primitive@1.0.1': + "@radix-ui/primitive@1.0.1": dependencies: - '@babel/runtime': 7.26.0 + "@babel/runtime": 7.26.0 - '@radix-ui/primitive@1.1.1': {} + "@radix-ui/primitive@1.1.1": {} - '@radix-ui/react-accordion@1.2.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-accordion@1.2.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-collapsible': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-collapsible": 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-collection": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-direction": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-id": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-arrow@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-arrow@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-checkbox@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-checkbox@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-presence": 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-previous": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-size": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-collapsible@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-collapsible@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-id": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-presence": 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-collection@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-collection@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.1.1(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 + "@babel/runtime": 7.26.0 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-compose-refs@1.1.1(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-compose-refs@1.1.1(@types/react@18.3.18)(react@18.3.1)": dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-context@1.0.1(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-context@1.0.1(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 + "@babel/runtime": 7.26.0 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-context@1.1.1(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-context@1.1.1(@types/react@18.3.18)(react@18.3.1)": dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 - - '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@babel/runtime': 7.26.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@types/react": 18.3.18 + + "@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@babel/runtime": 7.26.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-id": 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.0.2(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.18)(react@18.3.1) aria-hidden: 1.2.4 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-remove-scroll: 2.5.5(@types/react@18.3.18)(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-dialog@1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-dialog@1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-focus-guards": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-focus-scope": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-id": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-portal": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-presence": 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) aria-hidden: 1.2.4 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-remove-scroll: 2.6.2(@types/react@18.3.18)(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-direction@1.1.0(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-direction@1.1.0(@types/react@18.3.18)(react@18.3.1)": dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.18)(react@18.3.1) + "@babel/runtime": 7.26.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-escape-keydown": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-dropdown-menu@2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-menu': 2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-dropdown-menu@2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-id": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-menu": 2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 + "@babel/runtime": 7.26.0 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.18)(react@18.3.1)": dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@babel/runtime": 7.26.0 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-focus-scope@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-icons@1.3.2(react@18.3.1)': + "@radix-ui/react-icons@1.3.2(react@18.3.1)": dependencies: react: 18.3.1 - '@radix-ui/react-id@1.0.1(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-id@1.0.1(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@babel/runtime": 7.26.0 + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-id@1.1.0(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-id@1.1.0(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-label@2.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-label@2.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-menu@2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-menu@2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-collection": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-direction": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-focus-guards": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-focus-scope": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-id": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-popper": 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-portal": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-presence": 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-roving-focus": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.18)(react@18.3.1) aria-hidden: 1.2.4 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-remove-scroll: 2.6.2(@types/react@18.3.18)(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-navigation-menu@1.2.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-navigation-menu@1.2.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-collection": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-direction": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-id": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-presence": 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-previous": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-visually-hidden": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-popover@1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-popover@1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-focus-guards": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-focus-scope": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-id": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-popper": 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-portal": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-presence": 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) aria-hidden: 1.2.4 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-remove-scroll: 2.6.2(@types/react@18.3.18)(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-popper@1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-arrow': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/rect': 1.1.0 + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-popper@1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@floating-ui/react-dom": 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-arrow": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-rect": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-size": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/rect": 1.1.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@babel/runtime": 7.26.0 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-portal@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-portal@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@babel/runtime": 7.26.0 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-presence@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-presence@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.18)(react@18.3.1) + "@babel/runtime": 7.26.0 + "@radix-ui/react-slot": 1.0.2(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-primitive@2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-primitive@2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-slot": 1.1.1(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-roving-focus@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-roving-focus@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-collection": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-direction": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-id": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-select@2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@radix-ui/number': 1.1.0 - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-collection': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-select@2.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@radix-ui/number": 1.1.0 + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-collection": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-direction": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-focus-guards": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-focus-scope": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-id": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-popper": 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-portal": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-previous": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-visually-hidden": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) aria-hidden: 1.2.4 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-remove-scroll: 2.6.2(@types/react@18.3.18)(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-separator@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-separator@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-slot@1.0.2(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-slot@1.0.2(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@babel/runtime": 7.26.0 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-slot@1.1.1(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-slot@1.1.1(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-switch@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-switch@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-previous": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-size": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-tabs@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-direction': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-tabs@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-direction": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-id": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-presence": 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-roving-focus": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) - - '@radix-ui/react-tooltip@1.1.6(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-context': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-popper': 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.18)(react@18.3.1) - '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) + + "@radix-ui/react-tooltip@1.1.6(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@radix-ui/primitive": 1.1.1 + "@radix-ui/react-compose-refs": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-context": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-id": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-popper": 1.2.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-portal": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-presence": 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.1.1(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-visually-hidden": 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 + "@babel/runtime": 7.26.0 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.18)(react@18.3.1)": dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@babel/runtime": 7.26.0 + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.18)(react@18.3.1) + "@babel/runtime": 7.26.0 + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@babel/runtime': 7.26.0 + "@babel/runtime": 7.26.0 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.18)(react@18.3.1)": dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-use-previous@1.1.0(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-use-previous@1.1.0(@types/react@18.3.18)(react@18.3.1)": dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-use-rect@1.1.0(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@radix-ui/rect': 1.1.0 + "@radix-ui/rect": 1.1.0 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-use-size@1.1.0(@types/react@18.3.18)(react@18.3.1)': + "@radix-ui/react-use-size@1.1.0(@types/react@18.3.18)(react@18.3.1)": dependencies: - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.18)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.3.18)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 - '@types/react-dom': 18.3.5(@types/react@18.3.18) + "@types/react": 18.3.18 + "@types/react-dom": 18.3.5(@types/react@18.3.18) - '@radix-ui/rect@1.1.0': {} + "@radix-ui/rect@1.1.0": {} - '@react-aria/focus@3.19.0(react@18.3.1)': + "@react-aria/focus@3.19.0(react@18.3.1)": dependencies: - '@react-aria/interactions': 3.22.5(react@18.3.1) - '@react-aria/utils': 3.26.0(react@18.3.1) - '@react-types/shared': 3.26.0(react@18.3.1) - '@swc/helpers': 0.5.15 + "@react-aria/interactions": 3.22.5(react@18.3.1) + "@react-aria/utils": 3.26.0(react@18.3.1) + "@react-types/shared": 3.26.0(react@18.3.1) + "@swc/helpers": 0.5.15 clsx: 2.1.1 react: 18.3.1 - '@react-aria/interactions@3.22.5(react@18.3.1)': + "@react-aria/interactions@3.22.5(react@18.3.1)": dependencies: - '@react-aria/ssr': 3.9.7(react@18.3.1) - '@react-aria/utils': 3.26.0(react@18.3.1) - '@react-types/shared': 3.26.0(react@18.3.1) - '@swc/helpers': 0.5.15 + "@react-aria/ssr": 3.9.7(react@18.3.1) + "@react-aria/utils": 3.26.0(react@18.3.1) + "@react-types/shared": 3.26.0(react@18.3.1) + "@swc/helpers": 0.5.15 react: 18.3.1 - '@react-aria/ssr@3.9.7(react@18.3.1)': + "@react-aria/ssr@3.9.7(react@18.3.1)": dependencies: - '@swc/helpers': 0.5.15 + "@swc/helpers": 0.5.15 react: 18.3.1 - '@react-aria/utils@3.26.0(react@18.3.1)': + "@react-aria/utils@3.26.0(react@18.3.1)": dependencies: - '@react-aria/ssr': 3.9.7(react@18.3.1) - '@react-stately/utils': 3.10.5(react@18.3.1) - '@react-types/shared': 3.26.0(react@18.3.1) - '@swc/helpers': 0.5.15 + "@react-aria/ssr": 3.9.7(react@18.3.1) + "@react-stately/utils": 3.10.5(react@18.3.1) + "@react-types/shared": 3.26.0(react@18.3.1) + "@swc/helpers": 0.5.15 clsx: 2.1.1 react: 18.3.1 - '@react-stately/utils@3.10.5(react@18.3.1)': + "@react-stately/utils@3.10.5(react@18.3.1)": dependencies: - '@swc/helpers': 0.5.15 + "@swc/helpers": 0.5.15 react: 18.3.1 - '@react-types/shared@3.26.0(react@18.3.1)': + "@react-types/shared@3.26.0(react@18.3.1)": dependencies: react: 18.3.1 - '@remix-run/router@1.21.0': {} + "@remix-run/router@1.21.0": {} - '@repeaterjs/repeater@3.0.6': {} + "@repeaterjs/repeater@3.0.6": {} - '@rollup/plugin-babel@5.3.1(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@2.79.2)': + "@rollup/plugin-babel@5.3.1(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@2.79.2)": dependencies: - '@babel/core': 7.26.0 - '@babel/helper-module-imports': 7.25.9 - '@rollup/pluginutils': 3.1.0(rollup@2.79.2) + "@babel/core": 7.26.0 + "@babel/helper-module-imports": 7.25.9 + "@rollup/pluginutils": 3.1.0(rollup@2.79.2) rollup: 2.79.2 optionalDependencies: - '@types/babel__core': 7.20.5 + "@types/babel__core": 7.20.5 transitivePeerDependencies: - supports-color - '@rollup/plugin-node-resolve@15.3.1(rollup@2.79.2)': + "@rollup/plugin-node-resolve@15.3.1(rollup@2.79.2)": dependencies: - '@rollup/pluginutils': 5.1.4(rollup@2.79.2) - '@types/resolve': 1.20.2 + "@rollup/pluginutils": 5.1.4(rollup@2.79.2) + "@types/resolve": 1.20.2 deepmerge: 4.3.1 is-module: 1.0.0 resolve: 1.22.10 optionalDependencies: rollup: 2.79.2 - '@rollup/plugin-replace@2.4.2(rollup@2.79.2)': + "@rollup/plugin-replace@2.4.2(rollup@2.79.2)": dependencies: - '@rollup/pluginutils': 3.1.0(rollup@2.79.2) + "@rollup/pluginutils": 3.1.0(rollup@2.79.2) magic-string: 0.25.9 rollup: 2.79.2 - '@rollup/plugin-terser@0.4.4(rollup@2.79.2)': + "@rollup/plugin-terser@0.4.4(rollup@2.79.2)": dependencies: serialize-javascript: 6.0.2 smob: 1.5.0 @@ -11744,210 +17129,210 @@ snapshots: optionalDependencies: rollup: 2.79.2 - '@rollup/plugin-virtual@3.0.2(rollup@4.30.1)': + "@rollup/plugin-virtual@3.0.2(rollup@4.30.1)": optionalDependencies: rollup: 4.30.1 - '@rollup/pluginutils@3.1.0(rollup@2.79.2)': + "@rollup/pluginutils@3.1.0(rollup@2.79.2)": dependencies: - '@types/estree': 0.0.39 + "@types/estree": 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 rollup: 2.79.2 - '@rollup/pluginutils@5.1.4(rollup@2.79.2)': + "@rollup/pluginutils@5.1.4(rollup@2.79.2)": dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: rollup: 2.79.2 - '@rollup/pluginutils@5.1.4(rollup@4.30.1)': + "@rollup/pluginutils@5.1.4(rollup@4.30.1)": dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: rollup: 4.30.1 - '@rollup/rollup-android-arm-eabi@4.30.1': + "@rollup/rollup-android-arm-eabi@4.30.1": optional: true - '@rollup/rollup-android-arm64@4.30.1': + "@rollup/rollup-android-arm64@4.30.1": optional: true - '@rollup/rollup-darwin-arm64@4.30.1': + "@rollup/rollup-darwin-arm64@4.30.1": optional: true - '@rollup/rollup-darwin-x64@4.30.1': + "@rollup/rollup-darwin-x64@4.30.1": optional: true - '@rollup/rollup-freebsd-arm64@4.30.1': + "@rollup/rollup-freebsd-arm64@4.30.1": optional: true - '@rollup/rollup-freebsd-x64@4.30.1': + "@rollup/rollup-freebsd-x64@4.30.1": optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.30.1': + "@rollup/rollup-linux-arm-gnueabihf@4.30.1": optional: true - '@rollup/rollup-linux-arm-musleabihf@4.30.1': + "@rollup/rollup-linux-arm-musleabihf@4.30.1": optional: true - '@rollup/rollup-linux-arm64-gnu@4.30.1': + "@rollup/rollup-linux-arm64-gnu@4.30.1": optional: true - '@rollup/rollup-linux-arm64-musl@4.30.1': + "@rollup/rollup-linux-arm64-musl@4.30.1": optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.30.1': + "@rollup/rollup-linux-loongarch64-gnu@4.30.1": optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': + "@rollup/rollup-linux-powerpc64le-gnu@4.30.1": optional: true - '@rollup/rollup-linux-riscv64-gnu@4.30.1': + "@rollup/rollup-linux-riscv64-gnu@4.30.1": optional: true - '@rollup/rollup-linux-s390x-gnu@4.30.1': + "@rollup/rollup-linux-s390x-gnu@4.30.1": optional: true - '@rollup/rollup-linux-x64-gnu@4.30.1': + "@rollup/rollup-linux-x64-gnu@4.30.1": optional: true - '@rollup/rollup-linux-x64-musl@4.30.1': + "@rollup/rollup-linux-x64-musl@4.30.1": optional: true - '@rollup/rollup-win32-arm64-msvc@4.30.1': + "@rollup/rollup-win32-arm64-msvc@4.30.1": optional: true - '@rollup/rollup-win32-ia32-msvc@4.30.1': + "@rollup/rollup-win32-ia32-msvc@4.30.1": optional: true - '@rollup/rollup-win32-x64-msvc@4.30.1': + "@rollup/rollup-win32-x64-msvc@4.30.1": optional: true - '@rtsao/scc@1.1.0': {} + "@rtsao/scc@1.1.0": {} - '@scarf/scarf@1.4.0': {} + "@scarf/scarf@1.4.0": {} - '@scure/base@1.1.9': {} + "@scure/base@1.1.9": {} - '@scure/base@1.2.1': {} + "@scure/base@1.2.1": {} - '@scure/bip32@1.3.2': + "@scure/bip32@1.3.2": dependencies: - '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.2 - '@scure/base': 1.1.9 + "@noble/curves": 1.2.0 + "@noble/hashes": 1.3.2 + "@scure/base": 1.1.9 - '@scure/bip32@1.6.0': + "@scure/bip32@1.6.0": dependencies: - '@noble/curves': 1.7.0 - '@noble/hashes': 1.6.1 - '@scure/base': 1.2.1 + "@noble/curves": 1.7.0 + "@noble/hashes": 1.6.1 + "@scure/base": 1.2.1 - '@scure/bip32@1.6.1': + "@scure/bip32@1.6.1": dependencies: - '@noble/curves': 1.8.0 - '@noble/hashes': 1.7.0 - '@scure/base': 1.2.1 + "@noble/curves": 1.8.0 + "@noble/hashes": 1.7.0 + "@scure/base": 1.2.1 - '@scure/bip39@1.2.1': + "@scure/bip39@1.2.1": dependencies: - '@noble/hashes': 1.3.2 - '@scure/base': 1.1.9 + "@noble/hashes": 1.3.2 + "@scure/base": 1.1.9 - '@scure/bip39@1.5.0': + "@scure/bip39@1.5.0": dependencies: - '@noble/hashes': 1.6.1 - '@scure/base': 1.2.1 + "@noble/hashes": 1.6.1 + "@scure/base": 1.2.1 - '@scure/starknet@0.3.0': + "@scure/starknet@0.3.0": dependencies: - '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.3 + "@noble/curves": 1.2.0 + "@noble/hashes": 1.3.3 - '@scure/starknet@1.0.0': + "@scure/starknet@1.0.0": dependencies: - '@noble/curves': 1.3.0 - '@noble/hashes': 1.3.3 + "@noble/curves": 1.3.0 + "@noble/hashes": 1.3.3 - '@scure/starknet@1.1.0': + "@scure/starknet@1.1.0": dependencies: - '@noble/curves': 1.7.0 - '@noble/hashes': 1.6.1 + "@noble/curves": 1.7.0 + "@noble/hashes": 1.6.1 - '@shikijs/core@1.26.1': + "@shikijs/core@1.26.1": dependencies: - '@shikijs/engine-javascript': 1.26.1 - '@shikijs/engine-oniguruma': 1.26.1 - '@shikijs/types': 1.26.1 - '@shikijs/vscode-textmate': 10.0.1 - '@types/hast': 3.0.4 + "@shikijs/engine-javascript": 1.26.1 + "@shikijs/engine-oniguruma": 1.26.1 + "@shikijs/types": 1.26.1 + "@shikijs/vscode-textmate": 10.0.1 + "@types/hast": 3.0.4 hast-util-to-html: 9.0.4 - '@shikijs/engine-javascript@1.26.1': + "@shikijs/engine-javascript@1.26.1": dependencies: - '@shikijs/types': 1.26.1 - '@shikijs/vscode-textmate': 10.0.1 + "@shikijs/types": 1.26.1 + "@shikijs/vscode-textmate": 10.0.1 oniguruma-to-es: 0.10.0 - '@shikijs/engine-oniguruma@1.26.1': + "@shikijs/engine-oniguruma@1.26.1": dependencies: - '@shikijs/types': 1.26.1 - '@shikijs/vscode-textmate': 10.0.1 + "@shikijs/types": 1.26.1 + "@shikijs/vscode-textmate": 10.0.1 - '@shikijs/langs@1.26.1': + "@shikijs/langs@1.26.1": dependencies: - '@shikijs/types': 1.26.1 + "@shikijs/types": 1.26.1 - '@shikijs/rehype@1.26.1': + "@shikijs/rehype@1.26.1": dependencies: - '@shikijs/types': 1.26.1 - '@types/hast': 3.0.4 + "@shikijs/types": 1.26.1 + "@types/hast": 3.0.4 hast-util-to-string: 3.0.1 shiki: 1.26.1 unified: 11.0.5 unist-util-visit: 5.0.0 - '@shikijs/themes@1.26.1': + "@shikijs/themes@1.26.1": dependencies: - '@shikijs/types': 1.26.1 + "@shikijs/types": 1.26.1 - '@shikijs/transformers@1.26.1': + "@shikijs/transformers@1.26.1": dependencies: shiki: 1.26.1 - '@shikijs/twoslash@1.26.1(typescript@5.7.2)': + "@shikijs/twoslash@1.26.1(typescript@5.7.2)": dependencies: - '@shikijs/core': 1.26.1 - '@shikijs/types': 1.26.1 + "@shikijs/core": 1.26.1 + "@shikijs/types": 1.26.1 twoslash: 0.2.12(typescript@5.7.2) transitivePeerDependencies: - supports-color - typescript - '@shikijs/types@1.26.1': + "@shikijs/types@1.26.1": dependencies: - '@shikijs/vscode-textmate': 10.0.1 - '@types/hast': 3.0.4 + "@shikijs/vscode-textmate": 10.0.1 + "@types/hast": 3.0.4 - '@shikijs/vscode-textmate@10.0.1': {} + "@shikijs/vscode-textmate@10.0.1": {} - '@sinclair/typebox@0.27.8': {} + "@sinclair/typebox@0.27.8": {} - '@starknet-io/types-js@0.7.10': {} + "@starknet-io/types-js@0.7.10": {} - '@starknet-react/chains@0.1.7': {} + "@starknet-react/chains@0.1.7": {} - '@starknet-react/chains@3.1.1': {} + "@starknet-react/chains@3.1.1": {} - '@starknet-react/core@2.3.0(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))': + "@starknet-react/core@2.3.0(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))": dependencies: - '@starknet-react/chains': 0.1.7 - '@tanstack/react-query': 5.62.16(react@18.3.1) + "@starknet-react/chains": 0.1.7 + "@tanstack/react-query": 5.62.16(react@18.3.1) eventemitter3: 5.0.1 get-starknet-core: 3.3.4(starknet@6.11.0(encoding@0.1.13)) immutable: 4.3.7 @@ -11955,10 +17340,10 @@ snapshots: starknet: 6.11.0(encoding@0.1.13) zod: 3.24.1 - '@starknet-react/core@2.9.0(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))': + "@starknet-react/core@2.9.0(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))": dependencies: - '@starknet-react/chains': 0.1.7 - '@tanstack/react-query': 5.62.16(react@18.3.1) + "@starknet-react/chains": 0.1.7 + "@tanstack/react-query": 5.62.16(react@18.3.1) eventemitter3: 5.0.1 get-starknet-core: 3.3.4(starknet@6.11.0(encoding@0.1.13)) immutable: 4.3.7 @@ -11966,11 +17351,11 @@ snapshots: starknet: 6.11.0(encoding@0.1.13) zod: 3.24.1 - '@starknet-react/core@3.6.3(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)': + "@starknet-react/core@3.6.3(get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)))(react@18.3.1)(starknet@6.11.0(encoding@0.1.13))(typescript@5.7.2)": dependencies: - '@starknet-io/types-js': 0.7.10 - '@starknet-react/chains': 3.1.1 - '@tanstack/react-query': 5.62.16(react@18.3.1) + "@starknet-io/types-js": 0.7.10 + "@starknet-react/chains": 3.1.1 + "@tanstack/react-query": 5.62.16(react@18.3.1) abi-wan-kanabi: 2.2.4 eventemitter3: 5.0.1 get-starknet-core: 3.3.4(starknet@6.11.0(encoding@0.1.13)) @@ -11983,138 +17368,138 @@ snapshots: - typescript - utf-8-validate - '@stitches/react@1.2.8(react@18.3.1)': + "@stitches/react@1.2.8(react@18.3.1)": dependencies: react: 18.3.1 - '@storybook/addon-actions@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-actions@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@storybook/global': 5.0.0 - '@types/uuid': 9.0.8 + "@storybook/global": 5.0.0 + "@types/uuid": 9.0.8 dequal: 2.0.3 polished: 4.3.1 storybook: 8.4.7(prettier@3.4.2) uuid: 9.0.1 - '@storybook/addon-backgrounds@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-backgrounds@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 memoizerific: 1.11.3 storybook: 8.4.7(prettier@3.4.2) ts-dedent: 2.2.0 - '@storybook/addon-controls@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-controls@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 dequal: 2.0.3 storybook: 8.4.7(prettier@3.4.2) ts-dedent: 2.2.0 - '@storybook/addon-docs@8.4.7(@types/react@18.3.18)(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-docs@8.4.7(@types/react@18.3.18)(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@mdx-js/react': 3.1.0(@types/react@18.3.18)(react@18.3.1) - '@storybook/blocks': 8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2)) - '@storybook/csf-plugin': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/react-dom-shim': 8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2)) + "@mdx-js/react": 3.1.0(@types/react@18.3.18)(react@18.3.1) + "@storybook/blocks": 8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2)) + "@storybook/csf-plugin": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/react-dom-shim": 8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2)) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) storybook: 8.4.7(prettier@3.4.2) ts-dedent: 2.2.0 transitivePeerDependencies: - - '@types/react' - - '@storybook/addon-essentials@8.4.7(@types/react@18.3.18)(storybook@8.4.7(prettier@3.4.2))': - dependencies: - '@storybook/addon-actions': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/addon-backgrounds': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/addon-controls': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/addon-docs': 8.4.7(@types/react@18.3.18)(storybook@8.4.7(prettier@3.4.2)) - '@storybook/addon-highlight': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/addon-measure': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/addon-outline': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/addon-toolbars': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/addon-viewport': 8.4.7(storybook@8.4.7(prettier@3.4.2)) + - "@types/react" + + "@storybook/addon-essentials@8.4.7(@types/react@18.3.18)(storybook@8.4.7(prettier@3.4.2))": + dependencies: + "@storybook/addon-actions": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/addon-backgrounds": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/addon-controls": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/addon-docs": 8.4.7(@types/react@18.3.18)(storybook@8.4.7(prettier@3.4.2)) + "@storybook/addon-highlight": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/addon-measure": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/addon-outline": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/addon-toolbars": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/addon-viewport": 8.4.7(storybook@8.4.7(prettier@3.4.2)) storybook: 8.4.7(prettier@3.4.2) ts-dedent: 2.2.0 transitivePeerDependencies: - - '@types/react' + - "@types/react" - '@storybook/addon-highlight@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-highlight@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 storybook: 8.4.7(prettier@3.4.2) - '@storybook/addon-interactions@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-interactions@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@storybook/global': 5.0.0 - '@storybook/instrumenter': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/test': 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/global": 5.0.0 + "@storybook/instrumenter": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/test": 8.4.7(storybook@8.4.7(prettier@3.4.2)) polished: 4.3.1 storybook: 8.4.7(prettier@3.4.2) ts-dedent: 2.2.0 - '@storybook/addon-links@8.4.7(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-links@8.4.7(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@storybook/csf': 0.1.13 - '@storybook/global': 5.0.0 + "@storybook/csf": 0.1.13 + "@storybook/global": 5.0.0 storybook: 8.4.7(prettier@3.4.2) ts-dedent: 2.2.0 optionalDependencies: react: 18.3.1 - '@storybook/addon-measure@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-measure@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 storybook: 8.4.7(prettier@3.4.2) tiny-invariant: 1.3.3 - '@storybook/addon-onboarding@8.4.7(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-onboarding@8.4.7(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))": dependencies: react-confetti: 6.2.2(react@18.3.1) storybook: 8.4.7(prettier@3.4.2) transitivePeerDependencies: - react - '@storybook/addon-outline@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-outline@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 storybook: 8.4.7(prettier@3.4.2) ts-dedent: 2.2.0 - '@storybook/addon-toolbars@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-toolbars@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: storybook: 8.4.7(prettier@3.4.2) - '@storybook/addon-viewport@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/addon-viewport@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: memoizerific: 1.11.3 storybook: 8.4.7(prettier@3.4.2) - '@storybook/blocks@8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))': + "@storybook/blocks@8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@storybook/csf': 0.1.13 - '@storybook/icons': 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@storybook/csf": 0.1.13 + "@storybook/icons": 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) storybook: 8.4.7(prettier@3.4.2) ts-dedent: 2.2.0 optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@storybook/builder-vite@8.4.7(storybook@8.4.7(prettier@3.4.2))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))': + "@storybook/builder-vite@8.4.7(storybook@8.4.7(prettier@3.4.2))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))": dependencies: - '@storybook/csf-plugin': 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/csf-plugin": 8.4.7(storybook@8.4.7(prettier@3.4.2)) browser-assert: 1.2.1 storybook: 8.4.7(prettier@3.4.2) ts-dedent: 2.2.0 vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) - '@storybook/components@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/components@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: storybook: 8.4.7(prettier@3.4.2) - '@storybook/core@8.4.7(prettier@3.4.2)': + "@storybook/core@8.4.7(prettier@3.4.2)": dependencies: - '@storybook/csf': 0.1.13 + "@storybook/csf": 0.1.13 better-opn: 3.0.2 browser-assert: 1.2.1 esbuild: 0.24.2 @@ -12132,48 +17517,48 @@ snapshots: - supports-color - utf-8-validate - '@storybook/csf-plugin@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/csf-plugin@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: storybook: 8.4.7(prettier@3.4.2) unplugin: 1.16.0 - '@storybook/csf@0.1.13': + "@storybook/csf@0.1.13": dependencies: type-fest: 2.19.0 - '@storybook/global@5.0.0': {} + "@storybook/global@5.0.0": {} - '@storybook/icons@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@storybook/icons@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@storybook/instrumenter@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/instrumenter@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@storybook/global': 5.0.0 - '@vitest/utils': 2.1.8 + "@storybook/global": 5.0.0 + "@vitest/utils": 2.1.8 storybook: 8.4.7(prettier@3.4.2) - '@storybook/manager-api@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/manager-api@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: storybook: 8.4.7(prettier@3.4.2) - '@storybook/preview-api@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/preview-api@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: storybook: 8.4.7(prettier@3.4.2) - '@storybook/react-dom-shim@8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))': + "@storybook/react-dom-shim@8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))": dependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) storybook: 8.4.7(prettier@3.4.2) - '@storybook/react-vite@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))': + "@storybook/react-vite@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))": dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.4.2(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) - '@rollup/pluginutils': 5.1.4(rollup@4.30.1) - '@storybook/builder-vite': 8.4.7(storybook@8.4.7(prettier@3.4.2))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) - '@storybook/react': 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2) + "@joshwooding/vite-plugin-react-docgen-typescript": 0.4.2(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) + "@rollup/pluginutils": 5.1.4(rollup@4.30.1) + "@storybook/builder-vite": 8.4.7(storybook@8.4.7(prettier@3.4.2))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) + "@storybook/react": 8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2) find-up: 5.0.0 magic-string: 0.30.17 react: 18.3.1 @@ -12184,97 +17569,97 @@ snapshots: tsconfig-paths: 4.2.0 vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - - '@storybook/test' + - "@storybook/test" - rollup - supports-color - typescript - '@storybook/react@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2)': + "@storybook/react@8.4.7(@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2))(typescript@5.7.2)": dependencies: - '@storybook/components': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/global': 5.0.0 - '@storybook/manager-api': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/preview-api': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@storybook/react-dom-shim': 8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2)) - '@storybook/theming': 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/components": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/global": 5.0.0 + "@storybook/manager-api": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/preview-api": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/react-dom-shim": 8.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.4.7(prettier@3.4.2)) + "@storybook/theming": 8.4.7(storybook@8.4.7(prettier@3.4.2)) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) storybook: 8.4.7(prettier@3.4.2) optionalDependencies: - '@storybook/test': 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@storybook/test": 8.4.7(storybook@8.4.7(prettier@3.4.2)) typescript: 5.7.2 - '@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/test@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: - '@storybook/csf': 0.1.13 - '@storybook/global': 5.0.0 - '@storybook/instrumenter': 8.4.7(storybook@8.4.7(prettier@3.4.2)) - '@testing-library/dom': 10.4.0 - '@testing-library/jest-dom': 6.5.0 - '@testing-library/user-event': 14.5.2(@testing-library/dom@10.4.0) - '@vitest/expect': 2.0.5 - '@vitest/spy': 2.0.5 + "@storybook/csf": 0.1.13 + "@storybook/global": 5.0.0 + "@storybook/instrumenter": 8.4.7(storybook@8.4.7(prettier@3.4.2)) + "@testing-library/dom": 10.4.0 + "@testing-library/jest-dom": 6.5.0 + "@testing-library/user-event": 14.5.2(@testing-library/dom@10.4.0) + "@vitest/expect": 2.0.5 + "@vitest/spy": 2.0.5 storybook: 8.4.7(prettier@3.4.2) - '@storybook/theming@8.4.7(storybook@8.4.7(prettier@3.4.2))': + "@storybook/theming@8.4.7(storybook@8.4.7(prettier@3.4.2))": dependencies: storybook: 8.4.7(prettier@3.4.2) - '@surma/rollup-plugin-off-main-thread@2.2.3': + "@surma/rollup-plugin-off-main-thread@2.2.3": dependencies: ejs: 3.1.10 json5: 2.2.3 magic-string: 0.25.9 string.prototype.matchall: 4.0.12 - '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.26.0)': + "@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 + "@babel/core": 7.26.0 - '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.0)': + "@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 + "@babel/core": 7.26.0 - '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.0)': + "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 + "@babel/core": 7.26.0 - '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.26.0)': + "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 + "@babel/core": 7.26.0 - '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.26.0)': + "@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 + "@babel/core": 7.26.0 - '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.26.0)': + "@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 + "@babel/core": 7.26.0 - '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.26.0)': + "@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 + "@babel/core": 7.26.0 - '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.26.0)': + "@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 + "@babel/core": 7.26.0 - '@svgr/babel-preset@8.1.0(@babel/core@7.26.0)': + "@svgr/babel-preset@8.1.0(@babel/core@7.26.0)": dependencies: - '@babel/core': 7.26.0 - '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.26.0) - '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.26.0) - '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.26.0) - '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.26.0) - '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.26.0) - '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.26.0) - '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.26.0) - '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.26.0) + "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.26.0) + "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.26.0) + "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.26.0) + "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.26.0) + "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.26.0) + "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.26.0) + "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.26.0) - '@svgr/core@8.1.0(typescript@5.7.2)': + "@svgr/core@8.1.0(typescript@5.7.2)": dependencies: - '@babel/core': 7.26.0 - '@svgr/babel-preset': 8.1.0(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@svgr/babel-preset": 8.1.0(@babel/core@7.26.0) camelcase: 6.3.0 cosmiconfig: 8.3.6(typescript@5.7.2) snake-case: 3.0.4 @@ -12282,104 +17667,104 @@ snapshots: - supports-color - typescript - '@svgr/hast-util-to-babel-ast@8.0.0': + "@svgr/hast-util-to-babel-ast@8.0.0": dependencies: - '@babel/types': 7.26.3 + "@babel/types": 7.26.3 entities: 4.5.0 - '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.7.2))': + "@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.7.2))": dependencies: - '@babel/core': 7.26.0 - '@svgr/babel-preset': 8.1.0(@babel/core@7.26.0) - '@svgr/core': 8.1.0(typescript@5.7.2) - '@svgr/hast-util-to-babel-ast': 8.0.0 + "@babel/core": 7.26.0 + "@svgr/babel-preset": 8.1.0(@babel/core@7.26.0) + "@svgr/core": 8.1.0(typescript@5.7.2) + "@svgr/hast-util-to-babel-ast": 8.0.0 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.7.2)': + "@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.7.2)": dependencies: - '@svgr/core': 8.1.0(typescript@5.7.2) + "@svgr/core": 8.1.0(typescript@5.7.2) cosmiconfig: 8.3.6(typescript@5.7.2) deepmerge: 4.3.1 svgo: 3.3.2 transitivePeerDependencies: - typescript - '@svgr/rollup@8.1.0(rollup@4.30.1)(typescript@5.7.2)': - dependencies: - '@babel/core': 7.26.0 - '@babel/plugin-transform-react-constant-elements': 7.25.9(@babel/core@7.26.0) - '@babel/preset-env': 7.26.0(@babel/core@7.26.0) - '@babel/preset-react': 7.26.3(@babel/core@7.26.0) - '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) - '@rollup/pluginutils': 5.1.4(rollup@4.30.1) - '@svgr/core': 8.1.0(typescript@5.7.2) - '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2)) - '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.7.2) + "@svgr/rollup@8.1.0(rollup@4.30.1)(typescript@5.7.2)": + dependencies: + "@babel/core": 7.26.0 + "@babel/plugin-transform-react-constant-elements": 7.25.9(@babel/core@7.26.0) + "@babel/preset-env": 7.26.0(@babel/core@7.26.0) + "@babel/preset-react": 7.26.3(@babel/core@7.26.0) + "@babel/preset-typescript": 7.26.0(@babel/core@7.26.0) + "@rollup/pluginutils": 5.1.4(rollup@4.30.1) + "@svgr/core": 8.1.0(typescript@5.7.2) + "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0(typescript@5.7.2)) + "@svgr/plugin-svgo": 8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.7.2) transitivePeerDependencies: - rollup - supports-color - typescript - '@swc/core-darwin-arm64@1.10.4': + "@swc/core-darwin-arm64@1.10.4": optional: true - '@swc/core-darwin-x64@1.10.4': + "@swc/core-darwin-x64@1.10.4": optional: true - '@swc/core-linux-arm-gnueabihf@1.10.4': + "@swc/core-linux-arm-gnueabihf@1.10.4": optional: true - '@swc/core-linux-arm64-gnu@1.10.4': + "@swc/core-linux-arm64-gnu@1.10.4": optional: true - '@swc/core-linux-arm64-musl@1.10.4': + "@swc/core-linux-arm64-musl@1.10.4": optional: true - '@swc/core-linux-x64-gnu@1.10.4': + "@swc/core-linux-x64-gnu@1.10.4": optional: true - '@swc/core-linux-x64-musl@1.10.4': + "@swc/core-linux-x64-musl@1.10.4": optional: true - '@swc/core-win32-arm64-msvc@1.10.4': + "@swc/core-win32-arm64-msvc@1.10.4": optional: true - '@swc/core-win32-ia32-msvc@1.10.4': + "@swc/core-win32-ia32-msvc@1.10.4": optional: true - '@swc/core-win32-x64-msvc@1.10.4': + "@swc/core-win32-x64-msvc@1.10.4": optional: true - '@swc/core@1.10.4(@swc/helpers@0.5.15)': + "@swc/core@1.10.4(@swc/helpers@0.5.15)": dependencies: - '@swc/counter': 0.1.3 - '@swc/types': 0.1.17 + "@swc/counter": 0.1.3 + "@swc/types": 0.1.17 optionalDependencies: - '@swc/core-darwin-arm64': 1.10.4 - '@swc/core-darwin-x64': 1.10.4 - '@swc/core-linux-arm-gnueabihf': 1.10.4 - '@swc/core-linux-arm64-gnu': 1.10.4 - '@swc/core-linux-arm64-musl': 1.10.4 - '@swc/core-linux-x64-gnu': 1.10.4 - '@swc/core-linux-x64-musl': 1.10.4 - '@swc/core-win32-arm64-msvc': 1.10.4 - '@swc/core-win32-ia32-msvc': 1.10.4 - '@swc/core-win32-x64-msvc': 1.10.4 - '@swc/helpers': 0.5.15 - - '@swc/counter@0.1.3': {} - - '@swc/helpers@0.5.15': + "@swc/core-darwin-arm64": 1.10.4 + "@swc/core-darwin-x64": 1.10.4 + "@swc/core-linux-arm-gnueabihf": 1.10.4 + "@swc/core-linux-arm64-gnu": 1.10.4 + "@swc/core-linux-arm64-musl": 1.10.4 + "@swc/core-linux-x64-gnu": 1.10.4 + "@swc/core-linux-x64-musl": 1.10.4 + "@swc/core-win32-arm64-msvc": 1.10.4 + "@swc/core-win32-ia32-msvc": 1.10.4 + "@swc/core-win32-x64-msvc": 1.10.4 + "@swc/helpers": 0.5.15 + + "@swc/counter@0.1.3": {} + + "@swc/helpers@0.5.15": dependencies: tslib: 2.8.1 - '@swc/types@0.1.17': + "@swc/types@0.1.17": dependencies: - '@swc/counter': 0.1.3 + "@swc/counter": 0.1.3 - '@tailwindcss/typography@0.5.16(tailwindcss@3.4.17)': + "@tailwindcss/typography@0.5.16(tailwindcss@3.4.17)": dependencies: lodash.castarray: 4.4.0 lodash.isplainobject: 4.0.6 @@ -12387,47 +17772,47 @@ snapshots: postcss-selector-parser: 6.0.10 tailwindcss: 3.4.17 - '@tanstack/history@1.95.0': {} + "@tanstack/history@1.95.0": {} - '@tanstack/query-core@5.62.16': {} + "@tanstack/query-core@5.62.16": {} - '@tanstack/react-query@5.62.16(react@18.3.1)': + "@tanstack/react-query@5.62.16(react@18.3.1)": dependencies: - '@tanstack/query-core': 5.62.16 + "@tanstack/query-core": 5.62.16 react: 18.3.1 - '@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@tanstack/history': 1.95.0 - '@tanstack/react-store': 0.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@tanstack/history": 1.95.0 + "@tanstack/react-store": 0.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) jsesc: 3.1.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tiny-invariant: 1.3.3 tiny-warning: 1.0.3 - '@tanstack/react-store@0.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@tanstack/react-store@0.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@tanstack/store': 0.7.0 + "@tanstack/store": 0.7.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) use-sync-external-store: 1.4.0(react@18.3.1) - '@tanstack/react-table@8.20.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@tanstack/react-table@8.20.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@tanstack/table-core': 8.20.5 + "@tanstack/table-core": 8.20.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@tanstack/react-virtual@3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@tanstack/react-virtual@3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@tanstack/virtual-core': 3.11.2 + "@tanstack/virtual-core": 3.11.2 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@tanstack/router-devtools@1.95.1(@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@tanstack/router-devtools@1.95.1(@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@tanstack/react-router': 1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@tanstack/react-router": 1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) clsx: 2.1.1 goober: 2.1.16(csstype@3.1.3) react: 18.3.1 @@ -12435,31 +17820,31 @@ snapshots: transitivePeerDependencies: - csstype - '@tanstack/router-generator@1.95.1(@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': + "@tanstack/router-generator@1.95.1(@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))": dependencies: - '@tanstack/virtual-file-routes': 1.87.6 + "@tanstack/virtual-file-routes": 1.87.6 prettier: 3.4.2 tsx: 4.19.2 zod: 3.24.1 optionalDependencies: - '@tanstack/react-router': 1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - - '@tanstack/router-plugin@1.95.1(@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))': - dependencies: - '@babel/core': 7.26.0 - '@babel/generator': 7.26.3 - '@babel/parser': 7.26.3 - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) - '@babel/template': 7.25.9 - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 - '@tanstack/router-generator': 1.95.1(@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@tanstack/virtual-file-routes': 1.87.6 - '@types/babel__core': 7.20.5 - '@types/babel__generator': 7.6.8 - '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.6 + "@tanstack/react-router": 1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + + "@tanstack/router-plugin@1.95.1(@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))": + dependencies: + "@babel/core": 7.26.0 + "@babel/generator": 7.26.3 + "@babel/parser": 7.26.3 + "@babel/plugin-syntax-jsx": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-syntax-typescript": 7.25.9(@babel/core@7.26.0) + "@babel/template": 7.25.9 + "@babel/traverse": 7.26.4 + "@babel/types": 7.26.3 + "@tanstack/router-generator": 1.95.1(@tanstack/react-router@1.95.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + "@tanstack/virtual-file-routes": 1.87.6 + "@types/babel__core": 7.20.5 + "@types/babel__generator": 7.6.8 + "@types/babel__template": 7.4.4 + "@types/babel__traverse": 7.20.6 babel-dead-code-elimination: 1.0.8 chokidar: 3.6.0 unplugin: 1.16.0 @@ -12467,63 +17852,63 @@ snapshots: optionalDependencies: vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - - '@tanstack/react-router' + - "@tanstack/react-router" - supports-color - '@tanstack/store@0.7.0': {} + "@tanstack/store@0.7.0": {} - '@tanstack/table-core@8.20.5': {} + "@tanstack/table-core@8.20.5": {} - '@tanstack/virtual-core@3.11.2': {} + "@tanstack/virtual-core@3.11.2": {} - '@tanstack/virtual-file-routes@1.87.6': {} + "@tanstack/virtual-file-routes@1.87.6": {} - '@telegram-apps/bridge@1.9.2': + "@telegram-apps/bridge@1.9.2": dependencies: - '@telegram-apps/signals': 1.1.1 - '@telegram-apps/toolkit': 1.1.1 - '@telegram-apps/transformers': 1.2.2 - '@telegram-apps/types': 1.2.1 + "@telegram-apps/signals": 1.1.1 + "@telegram-apps/toolkit": 1.1.1 + "@telegram-apps/transformers": 1.2.2 + "@telegram-apps/types": 1.2.1 - '@telegram-apps/navigation@1.0.13': + "@telegram-apps/navigation@1.0.13": dependencies: - '@telegram-apps/bridge': 1.9.2 - '@telegram-apps/signals': 1.1.1 - '@telegram-apps/toolkit': 1.1.1 + "@telegram-apps/bridge": 1.9.2 + "@telegram-apps/signals": 1.1.1 + "@telegram-apps/toolkit": 1.1.1 - '@telegram-apps/sdk@2.11.3': + "@telegram-apps/sdk@2.11.3": dependencies: - '@telegram-apps/bridge': 1.9.2 - '@telegram-apps/navigation': 1.0.13 - '@telegram-apps/signals': 1.1.1 - '@telegram-apps/toolkit': 1.1.1 - '@telegram-apps/transformers': 1.2.2 + "@telegram-apps/bridge": 1.9.2 + "@telegram-apps/navigation": 1.0.13 + "@telegram-apps/signals": 1.1.1 + "@telegram-apps/toolkit": 1.1.1 + "@telegram-apps/transformers": 1.2.2 - '@telegram-apps/signals@1.1.1': {} + "@telegram-apps/signals@1.1.1": {} - '@telegram-apps/toolkit@1.1.1': {} + "@telegram-apps/toolkit@1.1.1": {} - '@telegram-apps/transformers@1.2.2': + "@telegram-apps/transformers@1.2.2": dependencies: - '@telegram-apps/toolkit': 1.1.1 - '@telegram-apps/types': 1.2.1 + "@telegram-apps/toolkit": 1.1.1 + "@telegram-apps/types": 1.2.1 - '@telegram-apps/types@1.2.1': {} + "@telegram-apps/types@1.2.1": {} - '@testing-library/dom@10.4.0': + "@testing-library/dom@10.4.0": dependencies: - '@babel/code-frame': 7.26.2 - '@babel/runtime': 7.26.0 - '@types/aria-query': 5.0.4 + "@babel/code-frame": 7.26.2 + "@babel/runtime": 7.26.0 + "@types/aria-query": 5.0.4 aria-query: 5.3.0 chalk: 4.1.2 dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 - '@testing-library/jest-dom@6.5.0': + "@testing-library/jest-dom@6.5.0": dependencies: - '@adobe/css-tools': 4.4.1 + "@adobe/css-tools": 4.4.1 aria-query: 5.3.2 chalk: 3.0.0 css.escape: 1.5.1 @@ -12531,138 +17916,138 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 - '@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)': + "@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)": dependencies: - '@testing-library/dom': 10.4.0 + "@testing-library/dom": 10.4.0 - '@trysound/sax@0.2.0': {} + "@trysound/sax@0.2.0": {} - '@tweenjs/tween.js@23.1.3': {} + "@tweenjs/tween.js@23.1.3": {} - '@types/acorn@4.0.6': + "@types/acorn@4.0.6": dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 - '@types/aria-query@5.0.4': {} + "@types/aria-query@5.0.4": {} - '@types/babel__core@7.20.5': + "@types/babel__core@7.20.5": dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 - '@types/babel__generator': 7.6.8 - '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.6 + "@babel/parser": 7.26.3 + "@babel/types": 7.26.3 + "@types/babel__generator": 7.6.8 + "@types/babel__template": 7.4.4 + "@types/babel__traverse": 7.20.6 - '@types/babel__generator@7.6.8': + "@types/babel__generator@7.6.8": dependencies: - '@babel/types': 7.26.3 + "@babel/types": 7.26.3 - '@types/babel__template@7.4.4': + "@types/babel__template@7.4.4": dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + "@babel/parser": 7.26.3 + "@babel/types": 7.26.3 - '@types/babel__traverse@7.20.6': + "@types/babel__traverse@7.20.6": dependencies: - '@babel/types': 7.26.3 + "@babel/types": 7.26.3 - '@types/bun@1.1.15': + "@types/bun@1.1.15": dependencies: bun-types: 1.1.42 - '@types/debug@4.1.12': + "@types/debug@4.1.12": dependencies: - '@types/ms': 0.7.34 + "@types/ms": 0.7.34 - '@types/doctrine@0.0.9': {} + "@types/doctrine@0.0.9": {} - '@types/draco3d@1.4.10': {} + "@types/draco3d@1.4.10": {} - '@types/estree-jsx@1.0.5': + "@types/estree-jsx@1.0.5": dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 - '@types/estree@0.0.39': {} + "@types/estree@0.0.39": {} - '@types/estree@1.0.6': {} + "@types/estree@1.0.6": {} - '@types/hast@3.0.4': + "@types/hast@3.0.4": dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 - '@types/js-yaml@4.0.9': {} + "@types/js-yaml@4.0.9": {} - '@types/json-schema@7.0.15': {} + "@types/json-schema@7.0.15": {} - '@types/json5@0.0.29': {} + "@types/json5@0.0.29": {} - '@types/lodash@4.17.14': {} + "@types/lodash@4.17.14": {} - '@types/mdast@4.0.4': + "@types/mdast@4.0.4": dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 - '@types/mdx@2.0.13': {} + "@types/mdx@2.0.13": {} - '@types/ms@0.7.34': {} + "@types/ms@0.7.34": {} - '@types/node@20.12.14': + "@types/node@20.12.14": dependencies: undici-types: 5.26.5 - '@types/node@20.17.12': + "@types/node@20.17.12": dependencies: undici-types: 6.19.8 - '@types/offscreencanvas@2019.7.3': {} + "@types/offscreencanvas@2019.7.3": {} - '@types/prop-types@15.7.14': {} + "@types/prop-types@15.7.14": {} - '@types/react-dom@18.3.5(@types/react@18.3.18)': + "@types/react-dom@18.3.5(@types/react@18.3.18)": dependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 - '@types/react@18.3.18': + "@types/react@18.3.18": dependencies: - '@types/prop-types': 15.7.14 + "@types/prop-types": 15.7.14 csstype: 3.1.3 - '@types/resolve@1.20.2': {} + "@types/resolve@1.20.2": {} - '@types/resolve@1.20.6': {} + "@types/resolve@1.20.6": {} - '@types/stats.js@0.17.3': {} + "@types/stats.js@0.17.3": {} - '@types/three@0.163.0': + "@types/three@0.163.0": dependencies: - '@tweenjs/tween.js': 23.1.3 - '@types/stats.js': 0.17.3 - '@types/webxr': 0.5.20 + "@tweenjs/tween.js": 23.1.3 + "@types/stats.js": 0.17.3 + "@types/webxr": 0.5.20 fflate: 0.8.2 meshoptimizer: 0.18.1 - '@types/trusted-types@2.0.7': {} + "@types/trusted-types@2.0.7": {} - '@types/unist@2.0.11': {} + "@types/unist@2.0.11": {} - '@types/unist@3.0.3': {} + "@types/unist@3.0.3": {} - '@types/uuid@9.0.8': {} + "@types/uuid@9.0.8": {} - '@types/webxr@0.5.20': {} + "@types/webxr@0.5.20": {} - '@types/ws@8.5.13': + "@types/ws@8.5.13": dependencies: - '@types/node': 20.12.14 + "@types/node": 20.12.14 - '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + "@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)": dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/type-utils': 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - '@typescript-eslint/utils': 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - '@typescript-eslint/visitor-keys': 7.18.0 + "@eslint-community/regexpp": 4.12.1 + "@typescript-eslint/parser": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/scope-manager": 7.18.0 + "@typescript-eslint/type-utils": 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/utils": 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/visitor-keys": 7.18.0 eslint: 9.17.0(jiti@2.4.2) graphemer: 1.4.0 ignore: 5.3.2 @@ -12673,14 +18058,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + "@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)": dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - '@typescript-eslint/scope-manager': 8.19.1 - '@typescript-eslint/type-utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - '@typescript-eslint/visitor-keys': 8.19.1 + "@eslint-community/regexpp": 4.12.1 + "@typescript-eslint/parser": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/scope-manager": 8.19.1 + "@typescript-eslint/type-utils": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/utils": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/visitor-keys": 8.19.1 eslint: 9.17.0(jiti@2.4.2) graphemer: 1.4.0 ignore: 5.3.2 @@ -12690,32 +18075,32 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + "@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)": dependencies: - '@typescript-eslint/scope-manager': 8.19.1 - '@typescript-eslint/types': 8.19.1 - '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.2) - '@typescript-eslint/visitor-keys': 8.19.1 + "@typescript-eslint/scope-manager": 8.19.1 + "@typescript-eslint/types": 8.19.1 + "@typescript-eslint/typescript-estree": 8.19.1(typescript@5.7.2) + "@typescript-eslint/visitor-keys": 8.19.1 debug: 4.4.0 eslint: 9.17.0(jiti@2.4.2) typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@7.18.0': + "@typescript-eslint/scope-manager@7.18.0": dependencies: - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/visitor-keys': 7.18.0 + "@typescript-eslint/types": 7.18.0 + "@typescript-eslint/visitor-keys": 7.18.0 - '@typescript-eslint/scope-manager@8.19.1': + "@typescript-eslint/scope-manager@8.19.1": dependencies: - '@typescript-eslint/types': 8.19.1 - '@typescript-eslint/visitor-keys': 8.19.1 + "@typescript-eslint/types": 8.19.1 + "@typescript-eslint/visitor-keys": 8.19.1 - '@typescript-eslint/type-utils@7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + "@typescript-eslint/type-utils@7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)": dependencies: - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) - '@typescript-eslint/utils': 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/typescript-estree": 7.18.0(typescript@5.7.2) + "@typescript-eslint/utils": 7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) debug: 4.4.0 eslint: 9.17.0(jiti@2.4.2) ts-api-utils: 1.4.3(typescript@5.7.2) @@ -12724,10 +18109,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + "@typescript-eslint/type-utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)": dependencies: - '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.2) - '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/typescript-estree": 8.19.1(typescript@5.7.2) + "@typescript-eslint/utils": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) debug: 4.4.0 eslint: 9.17.0(jiti@2.4.2) ts-api-utils: 2.0.0(typescript@5.7.2) @@ -12735,14 +18120,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@7.18.0': {} + "@typescript-eslint/types@7.18.0": {} - '@typescript-eslint/types@8.19.1': {} + "@typescript-eslint/types@8.19.1": {} - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.7.2)': + "@typescript-eslint/typescript-estree@7.18.0(typescript@5.7.2)": dependencies: - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/visitor-keys': 7.18.0 + "@typescript-eslint/types": 7.18.0 + "@typescript-eslint/visitor-keys": 7.18.0 debug: 4.4.0 globby: 11.1.0 is-glob: 4.0.3 @@ -12754,10 +18139,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.19.1(typescript@5.7.2)': + "@typescript-eslint/typescript-estree@8.19.1(typescript@5.7.2)": dependencies: - '@typescript-eslint/types': 8.19.1 - '@typescript-eslint/visitor-keys': 8.19.1 + "@typescript-eslint/types": 8.19.1 + "@typescript-eslint/visitor-keys": 8.19.1 debug: 4.4.0 fast-glob: 3.3.3 is-glob: 4.0.3 @@ -12768,64 +18153,64 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + "@typescript-eslint/utils@7.18.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)": dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) - '@typescript-eslint/scope-manager': 7.18.0 - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2) + "@eslint-community/eslint-utils": 4.4.1(eslint@9.17.0(jiti@2.4.2)) + "@typescript-eslint/scope-manager": 7.18.0 + "@typescript-eslint/types": 7.18.0 + "@typescript-eslint/typescript-estree": 7.18.0(typescript@5.7.2) eslint: 9.17.0(jiti@2.4.2) transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + "@typescript-eslint/utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)": dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) - '@typescript-eslint/scope-manager': 8.19.1 - '@typescript-eslint/types': 8.19.1 - '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.7.2) + "@eslint-community/eslint-utils": 4.4.1(eslint@9.17.0(jiti@2.4.2)) + "@typescript-eslint/scope-manager": 8.19.1 + "@typescript-eslint/types": 8.19.1 + "@typescript-eslint/typescript-estree": 8.19.1(typescript@5.7.2) eslint: 9.17.0(jiti@2.4.2) typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@7.18.0': + "@typescript-eslint/visitor-keys@7.18.0": dependencies: - '@typescript-eslint/types': 7.18.0 + "@typescript-eslint/types": 7.18.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@8.19.1': + "@typescript-eslint/visitor-keys@8.19.1": dependencies: - '@typescript-eslint/types': 8.19.1 + "@typescript-eslint/types": 8.19.1 eslint-visitor-keys: 4.2.0 - '@typescript/vfs@1.6.0(typescript@5.7.2)': + "@typescript/vfs@1.6.0(typescript@5.7.2)": dependencies: debug: 4.4.0 typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@ungap/structured-clone@1.2.1': {} + "@ungap/structured-clone@1.2.1": {} - '@use-gesture/core@10.3.1': {} + "@use-gesture/core@10.3.1": {} - '@use-gesture/react@10.3.1(react@18.3.1)': + "@use-gesture/react@10.3.1(react@18.3.1)": dependencies: - '@use-gesture/core': 10.3.1 + "@use-gesture/core": 10.3.1 react: 18.3.1 - '@vanilla-extract/babel-plugin-debug-ids@1.2.0': + "@vanilla-extract/babel-plugin-debug-ids@1.2.0": dependencies: - '@babel/core': 7.26.0 + "@babel/core": 7.26.0 transitivePeerDependencies: - supports-color - '@vanilla-extract/css@1.17.0': + "@vanilla-extract/css@1.17.0": dependencies: - '@emotion/hash': 0.9.2 - '@vanilla-extract/private': 1.0.6 + "@emotion/hash": 0.9.2 + "@vanilla-extract/private": 1.0.6 css-what: 6.1.0 cssesc: 3.0.0 csstype: 3.1.3 @@ -12839,16 +18224,16 @@ snapshots: transitivePeerDependencies: - babel-plugin-macros - '@vanilla-extract/dynamic@2.1.2': + "@vanilla-extract/dynamic@2.1.2": dependencies: - '@vanilla-extract/private': 1.0.6 + "@vanilla-extract/private": 1.0.6 - '@vanilla-extract/integration@6.5.0(@types/node@20.17.12)(terser@5.37.0)': + "@vanilla-extract/integration@6.5.0(@types/node@20.17.12)(terser@5.37.0)": dependencies: - '@babel/core': 7.26.0 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) - '@vanilla-extract/babel-plugin-debug-ids': 1.2.0 - '@vanilla-extract/css': 1.17.0 + "@babel/core": 7.26.0 + "@babel/plugin-syntax-typescript": 7.25.9(@babel/core@7.26.0) + "@vanilla-extract/babel-plugin-debug-ids": 1.2.0 + "@vanilla-extract/css": 1.17.0 esbuild: 0.19.12 eval: 0.1.8 find-up: 5.0.0 @@ -12859,7 +18244,7 @@ snapshots: vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) vite-node: 1.6.0(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - less - lightningcss @@ -12870,17 +18255,17 @@ snapshots: - supports-color - terser - '@vanilla-extract/private@1.0.6': {} + "@vanilla-extract/private@1.0.6": {} - '@vanilla-extract/vite-plugin@3.9.5(@types/node@20.17.12)(terser@5.37.0)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))': + "@vanilla-extract/vite-plugin@3.9.5(@types/node@20.17.12)(terser@5.37.0)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))": dependencies: - '@vanilla-extract/integration': 6.5.0(@types/node@20.17.12)(terser@5.37.0) + "@vanilla-extract/integration": 6.5.0(@types/node@20.17.12)(terser@5.37.0) outdent: 0.8.0 postcss: 8.4.49 postcss-load-config: 4.0.2(postcss@8.4.49) vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - less - lightningcss @@ -12892,16 +18277,16 @@ snapshots: - terser - ts-node - '@vercel/analytics@1.4.1(react@18.3.1)': + "@vercel/analytics@1.4.1(react@18.3.1)": optionalDependencies: react: 18.3.1 - '@vercel/build-utils@8.8.0': {} + "@vercel/build-utils@8.8.0": {} - '@vercel/nft@0.27.10(encoding@0.1.13)(rollup@4.30.1)': + "@vercel/nft@0.27.10(encoding@0.1.13)(rollup@4.30.1)": dependencies: - '@mapbox/node-pre-gyp': 2.0.0-rc.0(encoding@0.1.13) - '@rollup/pluginutils': 5.1.4(rollup@4.30.1) + "@mapbox/node-pre-gyp": 2.0.0-rc.0(encoding@0.1.13) + "@rollup/pluginutils": 5.1.4(rollup@4.30.1) acorn: 8.14.0 acorn-import-attributes: 1.9.5(acorn@8.14.0) async-sema: 3.1.1 @@ -12917,38 +18302,38 @@ snapshots: - rollup - supports-color - '@vercel/routing-utils@3.1.0': + "@vercel/routing-utils@3.1.0": dependencies: path-to-regexp: 6.1.0 optionalDependencies: ajv: 6.12.6 - '@vitejs/plugin-react@4.3.1(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))': + "@vitejs/plugin-react@4.3.1(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))": dependencies: - '@babel/core': 7.26.0 - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) - '@types/babel__core': 7.20.5 + "@babel/core": 7.26.0 + "@babel/plugin-transform-react-jsx-self": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-react-jsx-source": 7.25.9(@babel/core@7.26.0) + "@types/babel__core": 7.20.5 react-refresh: 0.14.2 vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - supports-color - '@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))': + "@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))": dependencies: - '@babel/core': 7.26.0 - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) - '@types/babel__core': 7.20.5 + "@babel/core": 7.26.0 + "@babel/plugin-transform-react-jsx-self": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-react-jsx-source": 7.25.9(@babel/core@7.26.0) + "@types/babel__core": 7.20.5 react-refresh: 0.14.2 vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - supports-color - '@vitest/coverage-v8@2.1.8(vitest@2.1.8(@types/node@20.17.12)(@vitest/ui@2.1.8)(terser@5.37.0))': + "@vitest/coverage-v8@2.1.8(vitest@2.1.8(@types/node@20.17.12)(@vitest/ui@2.1.8)(terser@5.37.0))": dependencies: - '@ampproject/remapping': 2.3.0 - '@bcoe/v8-coverage': 0.2.3 + "@ampproject/remapping": 2.3.0 + "@bcoe/v8-coverage": 0.2.3 debug: 4.4.0 istanbul-lib-coverage: 3.2.2 istanbul-lib-report: 3.0.1 @@ -12963,80 +18348,80 @@ snapshots: transitivePeerDependencies: - supports-color - '@vitest/expect@1.6.0': + "@vitest/expect@1.6.0": dependencies: - '@vitest/spy': 1.6.0 - '@vitest/utils': 1.6.0 + "@vitest/spy": 1.6.0 + "@vitest/utils": 1.6.0 chai: 4.5.0 - '@vitest/expect@2.0.5': + "@vitest/expect@2.0.5": dependencies: - '@vitest/spy': 2.0.5 - '@vitest/utils': 2.0.5 + "@vitest/spy": 2.0.5 + "@vitest/utils": 2.0.5 chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/expect@2.1.8': + "@vitest/expect@2.1.8": dependencies: - '@vitest/spy': 2.1.8 - '@vitest/utils': 2.1.8 + "@vitest/spy": 2.1.8 + "@vitest/utils": 2.1.8 chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))': + "@vitest/mocker@2.1.8(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))": dependencies: - '@vitest/spy': 2.1.8 + "@vitest/spy": 2.1.8 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) - '@vitest/pretty-format@2.0.5': + "@vitest/pretty-format@2.0.5": dependencies: tinyrainbow: 1.2.0 - '@vitest/pretty-format@2.1.8': + "@vitest/pretty-format@2.1.8": dependencies: tinyrainbow: 1.2.0 - '@vitest/runner@1.6.0': + "@vitest/runner@1.6.0": dependencies: - '@vitest/utils': 1.6.0 + "@vitest/utils": 1.6.0 p-limit: 5.0.0 pathe: 1.1.2 - '@vitest/runner@2.1.8': + "@vitest/runner@2.1.8": dependencies: - '@vitest/utils': 2.1.8 + "@vitest/utils": 2.1.8 pathe: 1.1.2 - '@vitest/snapshot@1.6.0': + "@vitest/snapshot@1.6.0": dependencies: magic-string: 0.30.17 pathe: 1.1.2 pretty-format: 29.7.0 - '@vitest/snapshot@2.1.8': + "@vitest/snapshot@2.1.8": dependencies: - '@vitest/pretty-format': 2.1.8 + "@vitest/pretty-format": 2.1.8 magic-string: 0.30.17 pathe: 1.1.2 - '@vitest/spy@1.6.0': + "@vitest/spy@1.6.0": dependencies: tinyspy: 2.2.1 - '@vitest/spy@2.0.5': + "@vitest/spy@2.0.5": dependencies: tinyspy: 3.0.2 - '@vitest/spy@2.1.8': + "@vitest/spy@2.1.8": dependencies: tinyspy: 3.0.2 - '@vitest/ui@2.1.8(vitest@2.1.8)': + "@vitest/ui@2.1.8(vitest@2.1.8)": dependencies: - '@vitest/utils': 2.1.8 + "@vitest/utils": 2.1.8 fflate: 0.8.2 flatted: 3.3.2 pathe: 1.1.2 @@ -13045,51 +18430,51 @@ snapshots: tinyrainbow: 1.2.0 vitest: 2.1.8(@types/node@20.17.12)(@vitest/ui@2.1.8)(terser@5.37.0) - '@vitest/utils@1.6.0': + "@vitest/utils@1.6.0": dependencies: diff-sequences: 29.6.3 estree-walker: 3.0.3 loupe: 2.3.7 pretty-format: 29.7.0 - '@vitest/utils@2.0.5': + "@vitest/utils@2.0.5": dependencies: - '@vitest/pretty-format': 2.0.5 + "@vitest/pretty-format": 2.0.5 estree-walker: 3.0.3 loupe: 3.1.2 tinyrainbow: 1.2.0 - '@vitest/utils@2.1.8': + "@vitest/utils@2.1.8": dependencies: - '@vitest/pretty-format': 2.1.8 + "@vitest/pretty-format": 2.1.8 loupe: 3.1.2 tinyrainbow: 1.2.0 - '@whatwg-node/disposablestack@0.0.5': + "@whatwg-node/disposablestack@0.0.5": dependencies: tslib: 2.8.1 - '@whatwg-node/fetch@0.10.1': + "@whatwg-node/fetch@0.10.1": dependencies: - '@whatwg-node/node-fetch': 0.7.5 + "@whatwg-node/node-fetch": 0.7.5 urlpattern-polyfill: 10.0.0 - '@whatwg-node/fetch@0.9.23': + "@whatwg-node/fetch@0.9.23": dependencies: - '@whatwg-node/node-fetch': 0.6.0 + "@whatwg-node/node-fetch": 0.6.0 urlpattern-polyfill: 10.0.0 - '@whatwg-node/node-fetch@0.6.0': + "@whatwg-node/node-fetch@0.6.0": dependencies: - '@kamilkisiela/fast-url-parser': 1.1.4 + "@kamilkisiela/fast-url-parser": 1.1.4 busboy: 1.6.0 fast-querystring: 1.1.2 tslib: 2.8.1 - '@whatwg-node/node-fetch@0.7.5': + "@whatwg-node/node-fetch@0.7.5": dependencies: - '@kamilkisiela/fast-url-parser': 1.1.4 - '@whatwg-node/disposablestack': 0.0.5 + "@kamilkisiela/fast-url-parser": 1.1.4 + "@whatwg-node/disposablestack": 0.0.5 busboy: 1.6.0 fast-querystring: 1.1.2 tslib: 2.8.1 @@ -13288,34 +18673,34 @@ snapshots: babel-dead-code-elimination@1.0.8: dependencies: - '@babel/core': 7.26.0 - '@babel/parser': 7.26.3 - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 + "@babel/core": 7.26.0 + "@babel/parser": 7.26.3 + "@babel/traverse": 7.26.4 + "@babel/types": 7.26.3 transitivePeerDependencies: - supports-color babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0): dependencies: - '@babel/compat-data': 7.26.3 - '@babel/core': 7.26.0 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) + "@babel/compat-data": 7.26.3 + "@babel/core": 7.26.0 + "@babel/helper-define-polyfill-provider": 0.6.3(@babel/core@7.26.0) semver: 6.3.1 transitivePeerDependencies: - supports-color babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0): dependencies: - '@babel/core': 7.26.0 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/helper-define-polyfill-provider": 0.6.3(@babel/core@7.26.0) core-js-compat: 3.39.0 transitivePeerDependencies: - supports-color babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0): dependencies: - '@babel/core': 7.26.0 - '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/helper-define-polyfill-provider": 0.6.3(@babel/core@7.26.0) transitivePeerDependencies: - supports-color @@ -13323,33 +18708,33 @@ snapshots: babel-preset-fbjs@3.4.0(@babel/core@7.26.0): dependencies: - '@babel/core': 7.26.0 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.0) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.0) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0) - '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0) - '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0) - '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0) - '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0) + "@babel/core": 7.26.0 + "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.26.0) + "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.26.0) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.26.0) + "@babel/plugin-syntax-flow": 7.26.0(@babel/core@7.26.0) + "@babel/plugin-syntax-jsx": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.26.0) + "@babel/plugin-transform-arrow-functions": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-block-scoped-functions": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-block-scoping": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-classes": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-computed-properties": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-destructuring": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-flow-strip-types": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-for-of": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-function-name": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-literals": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-member-expression-literals": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-modules-commonjs": 7.26.3(@babel/core@7.26.0) + "@babel/plugin-transform-object-super": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-parameters": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-property-literals": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-react-display-name": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-react-jsx": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-shorthand-properties": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-spread": 7.25.9(@babel/core@7.26.0) + "@babel/plugin-transform-template-literals": 7.25.9(@babel/core@7.26.0) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color @@ -13430,8 +18815,8 @@ snapshots: bun-types@1.1.42: dependencies: - '@types/node': 20.12.14 - '@types/ws': 8.5.13 + "@types/node": 20.12.14 + "@types/ws": 8.5.13 bundle-require@5.1.0(esbuild@0.24.2): dependencies: @@ -13493,12 +18878,12 @@ snapshots: dependencies: node-gyp-build-optional-packages: 5.1.1 optionalDependencies: - '@cbor-extract/cbor-extract-darwin-arm64': 2.2.0 - '@cbor-extract/cbor-extract-darwin-x64': 2.2.0 - '@cbor-extract/cbor-extract-linux-arm': 2.2.0 - '@cbor-extract/cbor-extract-linux-arm64': 2.2.0 - '@cbor-extract/cbor-extract-linux-x64': 2.2.0 - '@cbor-extract/cbor-extract-win32-x64': 2.2.0 + "@cbor-extract/cbor-extract-darwin-arm64": 2.2.0 + "@cbor-extract/cbor-extract-darwin-x64": 2.2.0 + "@cbor-extract/cbor-extract-linux-arm": 2.2.0 + "@cbor-extract/cbor-extract-linux-arm64": 2.2.0 + "@cbor-extract/cbor-extract-linux-x64": 2.2.0 + "@cbor-extract/cbor-extract-win32-x64": 2.2.0 optional: true cbor-x@1.6.0: @@ -13659,13 +19044,13 @@ snapshots: cmdk@1.0.0(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-dialog": 1.0.5(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" collapse-white-space@2.1.0: {} @@ -13742,7 +19127,7 @@ snapshots: create-vocs@1.0.0-alpha.5: dependencies: - '@clack/prompts': 0.7.0 + "@clack/prompts": 0.7.0 cac: 6.7.14 detect-package-manager: 3.0.2 fs-extra: 11.2.0 @@ -14083,14 +19468,14 @@ snapshots: esast-util-from-estree@2.0.0: dependencies: - '@types/estree-jsx': 1.0.5 + "@types/estree-jsx": 1.0.5 devlop: 1.1.0 estree-util-visit: 2.0.0 unist-util-position-from-estree: 2.0.0 esast-util-from-js@2.0.1: dependencies: - '@types/estree-jsx': 1.0.5 + "@types/estree-jsx": 1.0.5 acorn: 8.14.0 esast-util-from-estree: 2.0.0 vfile-message: 4.0.2 @@ -14104,110 +19489,110 @@ snapshots: esbuild@0.19.12: optionalDependencies: - '@esbuild/aix-ppc64': 0.19.12 - '@esbuild/android-arm': 0.19.12 - '@esbuild/android-arm64': 0.19.12 - '@esbuild/android-x64': 0.19.12 - '@esbuild/darwin-arm64': 0.19.12 - '@esbuild/darwin-x64': 0.19.12 - '@esbuild/freebsd-arm64': 0.19.12 - '@esbuild/freebsd-x64': 0.19.12 - '@esbuild/linux-arm': 0.19.12 - '@esbuild/linux-arm64': 0.19.12 - '@esbuild/linux-ia32': 0.19.12 - '@esbuild/linux-loong64': 0.19.12 - '@esbuild/linux-mips64el': 0.19.12 - '@esbuild/linux-ppc64': 0.19.12 - '@esbuild/linux-riscv64': 0.19.12 - '@esbuild/linux-s390x': 0.19.12 - '@esbuild/linux-x64': 0.19.12 - '@esbuild/netbsd-x64': 0.19.12 - '@esbuild/openbsd-x64': 0.19.12 - '@esbuild/sunos-x64': 0.19.12 - '@esbuild/win32-arm64': 0.19.12 - '@esbuild/win32-ia32': 0.19.12 - '@esbuild/win32-x64': 0.19.12 + "@esbuild/aix-ppc64": 0.19.12 + "@esbuild/android-arm": 0.19.12 + "@esbuild/android-arm64": 0.19.12 + "@esbuild/android-x64": 0.19.12 + "@esbuild/darwin-arm64": 0.19.12 + "@esbuild/darwin-x64": 0.19.12 + "@esbuild/freebsd-arm64": 0.19.12 + "@esbuild/freebsd-x64": 0.19.12 + "@esbuild/linux-arm": 0.19.12 + "@esbuild/linux-arm64": 0.19.12 + "@esbuild/linux-ia32": 0.19.12 + "@esbuild/linux-loong64": 0.19.12 + "@esbuild/linux-mips64el": 0.19.12 + "@esbuild/linux-ppc64": 0.19.12 + "@esbuild/linux-riscv64": 0.19.12 + "@esbuild/linux-s390x": 0.19.12 + "@esbuild/linux-x64": 0.19.12 + "@esbuild/netbsd-x64": 0.19.12 + "@esbuild/openbsd-x64": 0.19.12 + "@esbuild/sunos-x64": 0.19.12 + "@esbuild/win32-arm64": 0.19.12 + "@esbuild/win32-ia32": 0.19.12 + "@esbuild/win32-x64": 0.19.12 esbuild@0.21.5: optionalDependencies: - '@esbuild/aix-ppc64': 0.21.5 - '@esbuild/android-arm': 0.21.5 - '@esbuild/android-arm64': 0.21.5 - '@esbuild/android-x64': 0.21.5 - '@esbuild/darwin-arm64': 0.21.5 - '@esbuild/darwin-x64': 0.21.5 - '@esbuild/freebsd-arm64': 0.21.5 - '@esbuild/freebsd-x64': 0.21.5 - '@esbuild/linux-arm': 0.21.5 - '@esbuild/linux-arm64': 0.21.5 - '@esbuild/linux-ia32': 0.21.5 - '@esbuild/linux-loong64': 0.21.5 - '@esbuild/linux-mips64el': 0.21.5 - '@esbuild/linux-ppc64': 0.21.5 - '@esbuild/linux-riscv64': 0.21.5 - '@esbuild/linux-s390x': 0.21.5 - '@esbuild/linux-x64': 0.21.5 - '@esbuild/netbsd-x64': 0.21.5 - '@esbuild/openbsd-x64': 0.21.5 - '@esbuild/sunos-x64': 0.21.5 - '@esbuild/win32-arm64': 0.21.5 - '@esbuild/win32-ia32': 0.21.5 - '@esbuild/win32-x64': 0.21.5 + "@esbuild/aix-ppc64": 0.21.5 + "@esbuild/android-arm": 0.21.5 + "@esbuild/android-arm64": 0.21.5 + "@esbuild/android-x64": 0.21.5 + "@esbuild/darwin-arm64": 0.21.5 + "@esbuild/darwin-x64": 0.21.5 + "@esbuild/freebsd-arm64": 0.21.5 + "@esbuild/freebsd-x64": 0.21.5 + "@esbuild/linux-arm": 0.21.5 + "@esbuild/linux-arm64": 0.21.5 + "@esbuild/linux-ia32": 0.21.5 + "@esbuild/linux-loong64": 0.21.5 + "@esbuild/linux-mips64el": 0.21.5 + "@esbuild/linux-ppc64": 0.21.5 + "@esbuild/linux-riscv64": 0.21.5 + "@esbuild/linux-s390x": 0.21.5 + "@esbuild/linux-x64": 0.21.5 + "@esbuild/netbsd-x64": 0.21.5 + "@esbuild/openbsd-x64": 0.21.5 + "@esbuild/sunos-x64": 0.21.5 + "@esbuild/win32-arm64": 0.21.5 + "@esbuild/win32-ia32": 0.21.5 + "@esbuild/win32-x64": 0.21.5 esbuild@0.23.1: optionalDependencies: - '@esbuild/aix-ppc64': 0.23.1 - '@esbuild/android-arm': 0.23.1 - '@esbuild/android-arm64': 0.23.1 - '@esbuild/android-x64': 0.23.1 - '@esbuild/darwin-arm64': 0.23.1 - '@esbuild/darwin-x64': 0.23.1 - '@esbuild/freebsd-arm64': 0.23.1 - '@esbuild/freebsd-x64': 0.23.1 - '@esbuild/linux-arm': 0.23.1 - '@esbuild/linux-arm64': 0.23.1 - '@esbuild/linux-ia32': 0.23.1 - '@esbuild/linux-loong64': 0.23.1 - '@esbuild/linux-mips64el': 0.23.1 - '@esbuild/linux-ppc64': 0.23.1 - '@esbuild/linux-riscv64': 0.23.1 - '@esbuild/linux-s390x': 0.23.1 - '@esbuild/linux-x64': 0.23.1 - '@esbuild/netbsd-x64': 0.23.1 - '@esbuild/openbsd-arm64': 0.23.1 - '@esbuild/openbsd-x64': 0.23.1 - '@esbuild/sunos-x64': 0.23.1 - '@esbuild/win32-arm64': 0.23.1 - '@esbuild/win32-ia32': 0.23.1 - '@esbuild/win32-x64': 0.23.1 + "@esbuild/aix-ppc64": 0.23.1 + "@esbuild/android-arm": 0.23.1 + "@esbuild/android-arm64": 0.23.1 + "@esbuild/android-x64": 0.23.1 + "@esbuild/darwin-arm64": 0.23.1 + "@esbuild/darwin-x64": 0.23.1 + "@esbuild/freebsd-arm64": 0.23.1 + "@esbuild/freebsd-x64": 0.23.1 + "@esbuild/linux-arm": 0.23.1 + "@esbuild/linux-arm64": 0.23.1 + "@esbuild/linux-ia32": 0.23.1 + "@esbuild/linux-loong64": 0.23.1 + "@esbuild/linux-mips64el": 0.23.1 + "@esbuild/linux-ppc64": 0.23.1 + "@esbuild/linux-riscv64": 0.23.1 + "@esbuild/linux-s390x": 0.23.1 + "@esbuild/linux-x64": 0.23.1 + "@esbuild/netbsd-x64": 0.23.1 + "@esbuild/openbsd-arm64": 0.23.1 + "@esbuild/openbsd-x64": 0.23.1 + "@esbuild/sunos-x64": 0.23.1 + "@esbuild/win32-arm64": 0.23.1 + "@esbuild/win32-ia32": 0.23.1 + "@esbuild/win32-x64": 0.23.1 esbuild@0.24.2: optionalDependencies: - '@esbuild/aix-ppc64': 0.24.2 - '@esbuild/android-arm': 0.24.2 - '@esbuild/android-arm64': 0.24.2 - '@esbuild/android-x64': 0.24.2 - '@esbuild/darwin-arm64': 0.24.2 - '@esbuild/darwin-x64': 0.24.2 - '@esbuild/freebsd-arm64': 0.24.2 - '@esbuild/freebsd-x64': 0.24.2 - '@esbuild/linux-arm': 0.24.2 - '@esbuild/linux-arm64': 0.24.2 - '@esbuild/linux-ia32': 0.24.2 - '@esbuild/linux-loong64': 0.24.2 - '@esbuild/linux-mips64el': 0.24.2 - '@esbuild/linux-ppc64': 0.24.2 - '@esbuild/linux-riscv64': 0.24.2 - '@esbuild/linux-s390x': 0.24.2 - '@esbuild/linux-x64': 0.24.2 - '@esbuild/netbsd-arm64': 0.24.2 - '@esbuild/netbsd-x64': 0.24.2 - '@esbuild/openbsd-arm64': 0.24.2 - '@esbuild/openbsd-x64': 0.24.2 - '@esbuild/sunos-x64': 0.24.2 - '@esbuild/win32-arm64': 0.24.2 - '@esbuild/win32-ia32': 0.24.2 - '@esbuild/win32-x64': 0.24.2 + "@esbuild/aix-ppc64": 0.24.2 + "@esbuild/android-arm": 0.24.2 + "@esbuild/android-arm64": 0.24.2 + "@esbuild/android-x64": 0.24.2 + "@esbuild/darwin-arm64": 0.24.2 + "@esbuild/darwin-x64": 0.24.2 + "@esbuild/freebsd-arm64": 0.24.2 + "@esbuild/freebsd-x64": 0.24.2 + "@esbuild/linux-arm": 0.24.2 + "@esbuild/linux-arm64": 0.24.2 + "@esbuild/linux-ia32": 0.24.2 + "@esbuild/linux-loong64": 0.24.2 + "@esbuild/linux-mips64el": 0.24.2 + "@esbuild/linux-ppc64": 0.24.2 + "@esbuild/linux-riscv64": 0.24.2 + "@esbuild/linux-s390x": 0.24.2 + "@esbuild/linux-x64": 0.24.2 + "@esbuild/netbsd-arm64": 0.24.2 + "@esbuild/netbsd-x64": 0.24.2 + "@esbuild/openbsd-arm64": 0.24.2 + "@esbuild/openbsd-x64": 0.24.2 + "@esbuild/sunos-x64": 0.24.2 + "@esbuild/win32-arm64": 0.24.2 + "@esbuild/win32-ia32": 0.24.2 + "@esbuild/win32-x64": 0.24.2 escalade@3.2.0: {} @@ -14228,7 +19613,7 @@ snapshots: eslint-config-love@114.0.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2): dependencies: - '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/utils": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) eslint: 9.17.0(jiti@2.4.2) eslint-plugin-eslint-comments: 3.2.0(eslint@9.17.0(jiti@2.4.2)) eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)) @@ -14237,7 +19622,7 @@ snapshots: typescript: 5.7.2 typescript-eslint: 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) transitivePeerDependencies: - - '@typescript-eslint/parser' + - "@typescript-eslint/parser" - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color @@ -14254,7 +19639,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/parser": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) eslint: 9.17.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: @@ -14262,8 +19647,8 @@ snapshots: eslint-plugin-es-x@7.8.0(eslint@9.17.0(jiti@2.4.2)): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) - '@eslint-community/regexpp': 4.12.1 + "@eslint-community/eslint-utils": 4.4.1(eslint@9.17.0(jiti@2.4.2)) + "@eslint-community/regexpp": 4.12.1 eslint: 9.17.0(jiti@2.4.2) eslint-compat-utils: 0.5.1(eslint@9.17.0(jiti@2.4.2)) @@ -14275,7 +19660,7 @@ snapshots: eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)): dependencies: - '@rtsao/scc': 1.1.0 + "@rtsao/scc": 1.1.0 array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.3 @@ -14296,7 +19681,7 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/parser": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -14304,7 +19689,7 @@ snapshots: eslint-plugin-n@17.15.1(eslint@9.17.0(jiti@2.4.2)): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) + "@eslint-community/eslint-utils": 4.4.1(eslint@9.17.0(jiti@2.4.2)) enhanced-resolve: 5.18.0 eslint: 9.17.0(jiti@2.4.2) eslint-plugin-es-x: 7.8.0(eslint@9.17.0(jiti@2.4.2)) @@ -14316,7 +19701,7 @@ snapshots: eslint-plugin-promise@7.2.1(eslint@9.17.0(jiti@2.4.2)): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) + "@eslint-community/eslint-utils": 4.4.1(eslint@9.17.0(jiti@2.4.2)) eslint: 9.17.0(jiti@2.4.2) eslint-plugin-react-hooks@5.1.0(eslint@9.17.0(jiti@2.4.2)): @@ -14338,18 +19723,18 @@ snapshots: eslint@9.17.0(jiti@2.4.2): dependencies: - '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) - '@eslint-community/regexpp': 4.12.1 - '@eslint/config-array': 0.19.1 - '@eslint/core': 0.9.1 - '@eslint/eslintrc': 3.2.0 - '@eslint/js': 9.17.0 - '@eslint/plugin-kit': 0.2.4 - '@humanfs/node': 0.16.6 - '@humanwhocodes/module-importer': 1.0.1 - '@humanwhocodes/retry': 0.4.1 - '@types/estree': 1.0.6 - '@types/json-schema': 7.0.15 + "@eslint-community/eslint-utils": 4.4.1(eslint@9.17.0(jiti@2.4.2)) + "@eslint-community/regexpp": 4.12.1 + "@eslint/config-array": 0.19.1 + "@eslint/core": 0.9.1 + "@eslint/eslintrc": 3.2.0 + "@eslint/js": 9.17.0 + "@eslint/plugin-kit": 0.2.4 + "@humanfs/node": 0.16.6 + "@humanwhocodes/module-importer": 1.0.1 + "@humanwhocodes/retry": 0.4.1 + "@types/estree": 1.0.6 + "@types/json-schema": 7.0.15 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 @@ -14397,11 +19782,11 @@ snapshots: estree-util-attach-comments@3.0.0: dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 estree-util-build-jsx@3.0.1: dependencies: - '@types/estree-jsx': 1.0.5 + "@types/estree-jsx": 1.0.5 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 estree-walker: 3.0.3 @@ -14410,23 +19795,23 @@ snapshots: estree-util-scope@1.0.0: dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 devlop: 1.1.0 estree-util-to-js@2.0.0: dependencies: - '@types/estree-jsx': 1.0.5 + "@types/estree-jsx": 1.0.5 astring: 1.9.0 source-map: 0.7.4 estree-util-value-to-estree@3.2.1: dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 estree-util-visit@2.0.0: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/unist': 3.0.3 + "@types/estree-jsx": 1.0.5 + "@types/unist": 3.0.3 estree-walker@1.0.1: {} @@ -14434,7 +19819,7 @@ snapshots: estree-walker@3.0.3: dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 esutils@2.0.3: {} @@ -14442,7 +19827,7 @@ snapshots: eval@0.1.8: dependencies: - '@types/node': 20.17.12 + "@types/node": 20.17.12 require-like: 0.1.2 eventemitter3@5.0.1: {} @@ -14498,8 +19883,8 @@ snapshots: fast-glob@3.3.3: dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 + "@nodelib/fs.stat": 2.0.5 + "@nodelib/fs.walk": 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.8 @@ -14701,12 +20086,12 @@ snapshots: get-starknet-core@3.3.4(starknet@6.11.0(encoding@0.1.13)): dependencies: - '@module-federation/runtime': 0.1.21 + "@module-federation/runtime": 0.1.21 starknet: 6.11.0(encoding@0.1.13) get-starknet-core@4.0.0: dependencies: - '@starknet-io/types-js': 0.7.10 + "@starknet-io/types-js": 0.7.10 get-stream@6.0.1: {} @@ -14792,12 +20177,12 @@ snapshots: graphql-config@5.1.3(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0)(typescript@5.7.2): dependencies: - '@graphql-tools/graphql-file-loader': 8.0.11(graphql@16.10.0) - '@graphql-tools/json-file-loader': 8.0.11(graphql@16.10.0) - '@graphql-tools/load': 8.0.12(graphql@16.10.0) - '@graphql-tools/merge': 9.0.17(graphql@16.10.0) - '@graphql-tools/url-loader': 8.0.23(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0) - '@graphql-tools/utils': 10.7.2(graphql@16.10.0) + "@graphql-tools/graphql-file-loader": 8.0.11(graphql@16.10.0) + "@graphql-tools/json-file-loader": 8.0.11(graphql@16.10.0) + "@graphql-tools/load": 8.0.12(graphql@16.10.0) + "@graphql-tools/merge": 9.0.17(graphql@16.10.0) + "@graphql-tools/url-loader": 8.0.23(@types/node@20.17.12)(encoding@0.1.13)(graphql@16.10.0) + "@graphql-tools/utils": 10.7.2(graphql@16.10.0) cosmiconfig: 8.3.6(typescript@5.7.2) graphql: 16.10.0 jiti: 2.4.2 @@ -14805,7 +20190,7 @@ snapshots: string-env-interpolation: 1.0.1 tslib: 2.8.1 transitivePeerDependencies: - - '@types/node' + - "@types/node" - bufferutil - encoding - typescript @@ -14813,7 +20198,7 @@ snapshots: graphql-request@6.1.0(encoding@0.1.13)(graphql@16.10.0): dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) + "@graphql-typed-document-node/core": 3.2.0(graphql@16.10.0) cross-fetch: 3.2.0(encoding@0.1.13) graphql: 16.10.0 transitivePeerDependencies: @@ -14821,7 +20206,7 @@ snapshots: graphql-request@7.1.2(graphql@16.10.0): dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0) + "@graphql-typed-document-node/core": 3.2.0(graphql@16.10.0) graphql: 16.10.0 graphql-tag@2.12.6(graphql@16.10.0): @@ -14861,29 +20246,29 @@ snapshots: hast-util-classnames@3.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 space-separated-tokens: 2.0.2 hast-util-has-property@3.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hast-util-heading-rank@3.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hast-util-is-element@3.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hast-util-parse-selector@4.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hast-util-select@6.0.3: dependencies: - '@types/hast': 3.0.4 - '@types/unist': 3.0.3 + "@types/hast": 3.0.4 + "@types/unist": 3.0.3 bcp-47-match: 2.0.3 comma-separated-tokens: 2.0.3 css-selector-parser: 3.0.5 @@ -14900,9 +20285,9 @@ snapshots: hast-util-to-estree@3.1.1: dependencies: - '@types/estree': 1.0.6 - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 + "@types/estree": 1.0.6 + "@types/estree-jsx": 1.0.5 + "@types/hast": 3.0.4 comma-separated-tokens: 2.0.3 devlop: 1.1.0 estree-util-attach-comments: 3.0.0 @@ -14921,8 +20306,8 @@ snapshots: hast-util-to-html@9.0.4: dependencies: - '@types/hast': 3.0.4 - '@types/unist': 3.0.3 + "@types/hast": 3.0.4 + "@types/unist": 3.0.3 ccount: 2.0.1 comma-separated-tokens: 2.0.3 hast-util-whitespace: 3.0.0 @@ -14935,9 +20320,9 @@ snapshots: hast-util-to-jsx-runtime@2.3.2: dependencies: - '@types/estree': 1.0.6 - '@types/hast': 3.0.4 - '@types/unist': 3.0.3 + "@types/estree": 1.0.6 + "@types/hast": 3.0.4 + "@types/unist": 3.0.3 comma-separated-tokens: 2.0.3 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 @@ -14955,15 +20340,15 @@ snapshots: hast-util-to-string@3.0.1: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hast-util-whitespace@3.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hastscript@8.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 comma-separated-tokens: 2.0.3 hast-util-parse-selector: 4.0.0 property-information: 6.5.0 @@ -15298,7 +20683,7 @@ snapshots: istanbul-lib-source-maps@5.0.6: dependencies: - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/trace-mapping": 0.3.25 debug: 4.4.0 istanbul-lib-coverage: 3.2.2 transitivePeerDependencies: @@ -15311,9 +20696,9 @@ snapshots: jackspeak@3.4.3: dependencies: - '@isaacs/cliui': 8.0.2 + "@isaacs/cliui": 8.0.2 optionalDependencies: - '@pkgjs/parseargs': 0.11.0 + "@pkgjs/parseargs": 0.11.0 jake@10.9.2: dependencies: @@ -15336,7 +20721,7 @@ snapshots: jotai@2.11.0(@types/react@18.3.18)(react@18.3.1): optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 react: 18.3.1 joycon@3.1.1: {} @@ -15394,10 +20779,10 @@ snapshots: leva@0.9.35(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@radix-ui/react-portal': 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-tooltip': 1.1.6(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@stitches/react': 1.2.8(react@18.3.1) - '@use-gesture/react': 10.3.1(react@18.3.1) + "@radix-ui/react-portal": 1.1.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-tooltip": 1.1.6(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@stitches/react": 1.2.8(react@18.3.1) + "@use-gesture/react": 10.3.1(react@18.3.1) colord: 2.9.3 dequal: 2.0.3 merge-value: 1.0.0 @@ -15408,8 +20793,8 @@ snapshots: v8n: 1.5.1 zustand: 3.7.2(react@18.3.1) transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" leven@3.1.0: {} @@ -15525,16 +20910,16 @@ snapshots: magic-string@0.27.0: dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 + "@jridgewell/sourcemap-codec": 1.5.0 magic-string@0.30.17: dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 + "@jridgewell/sourcemap-codec": 1.5.0 magicast@0.3.5: dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + "@babel/parser": 7.26.3 + "@babel/types": 7.26.3 source-map-js: 1.2.1 make-dir@4.0.0: @@ -15564,7 +20949,7 @@ snapshots: mathjs@12.4.3: dependencies: - '@babel/runtime': 7.26.0 + "@babel/runtime": 7.26.0 complex.js: 2.4.2 decimal.js: 10.4.3 escape-latex: 1.2.0 @@ -15576,8 +20961,8 @@ snapshots: mdast-util-directive@3.0.0: dependencies: - '@types/mdast': 4.0.4 - '@types/unist': 3.0.3 + "@types/mdast": 4.0.4 + "@types/unist": 3.0.3 devlop: 1.1.0 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 @@ -15589,15 +20974,15 @@ snapshots: mdast-util-find-and-replace@3.0.2: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 escape-string-regexp: 5.0.0 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 mdast-util-from-markdown@2.0.2: dependencies: - '@types/mdast': 4.0.4 - '@types/unist': 3.0.3 + "@types/mdast": 4.0.4 + "@types/unist": 3.0.3 decode-named-character-reference: 1.0.2 devlop: 1.1.0 mdast-util-to-string: 4.0.0 @@ -15613,7 +20998,7 @@ snapshots: mdast-util-frontmatter@2.0.1: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 devlop: 1.1.0 escape-string-regexp: 5.0.0 mdast-util-from-markdown: 2.0.2 @@ -15624,7 +21009,7 @@ snapshots: mdast-util-gfm-autolink-literal@2.0.1: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 ccount: 2.0.1 devlop: 1.1.0 mdast-util-find-and-replace: 3.0.2 @@ -15632,7 +21017,7 @@ snapshots: mdast-util-gfm-footnote@2.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 @@ -15642,7 +21027,7 @@ snapshots: mdast-util-gfm-strikethrough@2.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: @@ -15650,7 +21035,7 @@ snapshots: mdast-util-gfm-table@2.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 devlop: 1.1.0 markdown-table: 3.0.4 mdast-util-from-markdown: 2.0.2 @@ -15660,7 +21045,7 @@ snapshots: mdast-util-gfm-task-list-item@2.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 @@ -15681,9 +21066,9 @@ snapshots: mdast-util-mdx-expression@2.0.1: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 + "@types/estree-jsx": 1.0.5 + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 @@ -15692,10 +21077,10 @@ snapshots: mdast-util-mdx-jsx@3.1.3: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - '@types/unist': 3.0.3 + "@types/estree-jsx": 1.0.5 + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 + "@types/unist": 3.0.3 ccount: 2.0.1 devlop: 1.1.0 mdast-util-from-markdown: 2.0.2 @@ -15719,9 +21104,9 @@ snapshots: mdast-util-mdxjs-esm@2.0.1: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 + "@types/estree-jsx": 1.0.5 + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 @@ -15730,14 +21115,14 @@ snapshots: mdast-util-phrasing@4.1.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 unist-util-is: 6.0.0 mdast-util-to-hast@13.2.0: dependencies: - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - '@ungap/structured-clone': 1.2.1 + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 + "@ungap/structured-clone": 1.2.1 devlop: 1.1.0 micromark-util-sanitize-uri: 2.0.1 trim-lines: 3.0.1 @@ -15747,8 +21132,8 @@ snapshots: mdast-util-to-markdown@2.1.2: dependencies: - '@types/mdast': 4.0.4 - '@types/unist': 3.0.3 + "@types/mdast": 4.0.4 + "@types/unist": 3.0.3 longest-streak: 3.1.0 mdast-util-phrasing: 4.1.0 mdast-util-to-string: 4.0.0 @@ -15759,7 +21144,7 @@ snapshots: mdast-util-to-string@4.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdn-data@2.0.28: {} @@ -15769,7 +21154,7 @@ snapshots: media-query-parser@2.0.2: dependencies: - '@babel/runtime': 7.26.0 + "@babel/runtime": 7.26.0 memoizerific@1.11.3: dependencies: @@ -15788,14 +21173,14 @@ snapshots: meros@1.3.0(@types/node@20.17.12): optionalDependencies: - '@types/node': 20.17.12 + "@types/node": 20.17.12 meshoptimizer@0.18.1: {} micro-starknet@0.2.3: dependencies: - '@noble/curves': 1.0.0 - '@noble/hashes': 1.3.3 + "@noble/curves": 1.0.0 + "@noble/hashes": 1.3.3 micromark-core-commonmark@2.0.2: dependencies: @@ -15893,7 +21278,7 @@ snapshots: micromark-extension-mdx-expression@3.0.0: dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 devlop: 1.1.0 micromark-factory-mdx-expression: 2.0.2 micromark-factory-space: 2.0.1 @@ -15904,8 +21289,8 @@ snapshots: micromark-extension-mdx-jsx@3.0.1: dependencies: - '@types/acorn': 4.0.6 - '@types/estree': 1.0.6 + "@types/acorn": 4.0.6 + "@types/estree": 1.0.6 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 micromark-factory-mdx-expression: 2.0.2 @@ -15922,7 +21307,7 @@ snapshots: micromark-extension-mdxjs-esm@3.0.0: dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 devlop: 1.1.0 micromark-core-commonmark: 2.0.2 micromark-util-character: 2.1.1 @@ -15958,7 +21343,7 @@ snapshots: micromark-factory-mdx-expression@2.0.2: dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 devlop: 1.1.0 micromark-factory-space: 2.0.1 micromark-util-character: 2.1.1 @@ -16022,9 +21407,9 @@ snapshots: micromark-util-events-to-acorn@2.0.2: dependencies: - '@types/acorn': 4.0.6 - '@types/estree': 1.0.6 - '@types/unist': 3.0.3 + "@types/acorn": 4.0.6 + "@types/estree": 1.0.6 + "@types/unist": 3.0.3 devlop: 1.1.0 estree-util-visit: 2.0.0 micromark-util-symbol: 2.0.1 @@ -16060,7 +21445,7 @@ snapshots: micromark@4.0.1: dependencies: - '@types/debug': 4.1.12 + "@types/debug": 4.1.12 debug: 4.4.0 decode-named-character-reference: 1.0.2 devlop: 1.1.0 @@ -16344,11 +21729,11 @@ snapshots: ox@0.6.0(typescript@5.7.2)(zod@3.24.1): dependencies: - '@adraffy/ens-normalize': 1.11.0 - '@noble/curves': 1.7.0 - '@noble/hashes': 1.6.1 - '@scure/bip32': 1.6.0 - '@scure/bip39': 1.5.0 + "@adraffy/ens-normalize": 1.11.0 + "@noble/curves": 1.7.0 + "@noble/hashes": 1.6.1 + "@scure/bip32": 1.6.0 + "@scure/bip39": 1.5.0 abitype: 1.0.7(typescript@5.7.2)(zod@3.24.1) eventemitter3: 5.0.1 optionalDependencies: @@ -16397,7 +21782,7 @@ snapshots: parse-entities@4.0.2: dependencies: - '@types/unist': 2.0.11 + "@types/unist": 2.0.11 character-entities-legacy: 3.0.0 character-reference-invalid: 2.0.1 decode-named-character-reference: 1.0.2 @@ -16413,7 +21798,7 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.26.2 + "@babel/code-frame": 7.26.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -16479,7 +21864,7 @@ snapshots: polished@4.3.1: dependencies: - '@babel/runtime': 7.26.0 + "@babel/runtime": 7.26.0 possible-typed-array-names@1.0.0: {} @@ -16556,7 +21941,7 @@ snapshots: pretty-format@29.7.0: dependencies: - '@jest/schemas': 29.6.3 + "@jest/schemas": 29.6.3 ansi-styles: 5.2.0 react-is: 18.3.1 @@ -16613,13 +21998,13 @@ snapshots: react-docgen@7.1.0: dependencies: - '@babel/core': 7.26.0 - '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 - '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.6 - '@types/doctrine': 0.0.9 - '@types/resolve': 1.20.6 + "@babel/core": 7.26.0 + "@babel/traverse": 7.26.4 + "@babel/types": 7.26.3 + "@types/babel__core": 7.20.5 + "@types/babel__traverse": 7.20.6 + "@types/doctrine": 0.0.9 + "@types/resolve": 1.20.6 doctrine: 3.0.0 resolve: 1.22.10 strip-indent: 4.0.0 @@ -16676,7 +22061,7 @@ snapshots: react-style-singleton: 2.2.3(@types/react@18.3.18)(react@18.3.1) tslib: 2.8.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 react-remove-scroll@2.5.5(@types/react@18.3.18)(react@18.3.1): dependencies: @@ -16687,7 +22072,7 @@ snapshots: use-callback-ref: 1.3.3(@types/react@18.3.18)(react@18.3.1) use-sidecar: 1.1.3(@types/react@18.3.18)(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 react-remove-scroll@2.6.2(@types/react@18.3.18)(react@18.3.1): dependencies: @@ -16698,18 +22083,18 @@ snapshots: use-callback-ref: 1.3.3(@types/react@18.3.18)(react@18.3.1) use-sidecar: 1.1.3(@types/react@18.3.18)(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 react-router-dom@6.28.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@remix-run/router': 1.21.0 + "@remix-run/router": 1.21.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-router: 6.28.1(react@18.3.1) react-router@6.28.1(react@18.3.1): dependencies: - '@remix-run/router': 1.21.0 + "@remix-run/router": 1.21.0 react: 18.3.1 react-shepherd@6.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2): @@ -16729,7 +22114,7 @@ snapshots: react: 18.3.1 tslib: 2.8.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 react@18.3.1: dependencies: @@ -16761,7 +22146,7 @@ snapshots: recma-build-jsx@1.0.0: dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 estree-util-build-jsx: 3.0.1 vfile: 6.0.3 @@ -16777,14 +22162,14 @@ snapshots: recma-parse@1.0.0: dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 esast-util-from-js: 2.0.1 unified: 11.0.5 vfile: 6.0.3 recma-stringify@1.0.0: dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 estree-util-to-js: 2.0.0 unified: 11.0.5 vfile: 6.0.3 @@ -16819,7 +22204,7 @@ snapshots: regenerator-transform@0.15.2: dependencies: - '@babel/runtime': 7.26.0 + "@babel/runtime": 7.26.0 regex-recursion@5.1.1: dependencies: @@ -16858,8 +22243,8 @@ snapshots: rehype-autolink-headings@7.1.0: dependencies: - '@types/hast': 3.0.4 - '@ungap/structured-clone': 1.2.1 + "@types/hast": 3.0.4 + "@ungap/structured-clone": 1.2.1 hast-util-heading-rank: 3.0.0 hast-util-is-element: 3.0.0 unified: 11.0.5 @@ -16867,22 +22252,22 @@ snapshots: rehype-class-names@1.0.14: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hast-util-classnames: 3.0.0 hast-util-select: 6.0.3 unified: 10.1.2 rehype-recma@1.0.0: dependencies: - '@types/estree': 1.0.6 - '@types/hast': 3.0.4 + "@types/estree": 1.0.6 + "@types/hast": 3.0.4 hast-util-to-estree: 3.1.1 transitivePeerDependencies: - supports-color rehype-slug@6.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 github-slugger: 2.0.0 hast-util-heading-rank: 3.0.0 hast-util-to-string: 3.0.1 @@ -16890,7 +22275,7 @@ snapshots: relay-runtime@12.0.0(encoding@0.1.13): dependencies: - '@babel/runtime': 7.26.0 + "@babel/runtime": 7.26.0 fbjs: 3.0.5(encoding@0.1.13) invariant: 2.2.4 transitivePeerDependencies: @@ -16898,7 +22283,7 @@ snapshots: remark-directive@3.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdast-util-directive: 3.0.0 micromark-extension-directive: 3.0.2 unified: 11.0.5 @@ -16907,7 +22292,7 @@ snapshots: remark-frontmatter@5.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdast-util-frontmatter: 2.0.1 micromark-extension-frontmatter: 2.0.0 unified: 11.0.5 @@ -16916,7 +22301,7 @@ snapshots: remark-gfm@4.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdast-util-gfm: 3.0.0 micromark-extension-gfm: 3.0.0 remark-parse: 11.0.0 @@ -16927,7 +22312,7 @@ snapshots: remark-mdx-frontmatter@4.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 estree-util-is-identifier-name: 3.0.0 estree-util-value-to-estree: 3.2.1 toml: 3.0.0 @@ -16943,7 +22328,7 @@ snapshots: remark-parse@11.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdast-util-from-markdown: 2.0.2 micromark-util-types: 2.0.1 unified: 11.0.5 @@ -16952,15 +22337,15 @@ snapshots: remark-rehype@11.1.1: dependencies: - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 mdast-util-to-hast: 13.2.0 unified: 11.0.5 vfile: 6.0.3 remark-stringify@11.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdast-util-to-markdown: 2.1.2 unified: 11.0.5 @@ -17014,27 +22399,27 @@ snapshots: rollup@4.30.1: dependencies: - '@types/estree': 1.0.6 + "@types/estree": 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.30.1 - '@rollup/rollup-android-arm64': 4.30.1 - '@rollup/rollup-darwin-arm64': 4.30.1 - '@rollup/rollup-darwin-x64': 4.30.1 - '@rollup/rollup-freebsd-arm64': 4.30.1 - '@rollup/rollup-freebsd-x64': 4.30.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.30.1 - '@rollup/rollup-linux-arm-musleabihf': 4.30.1 - '@rollup/rollup-linux-arm64-gnu': 4.30.1 - '@rollup/rollup-linux-arm64-musl': 4.30.1 - '@rollup/rollup-linux-loongarch64-gnu': 4.30.1 - '@rollup/rollup-linux-powerpc64le-gnu': 4.30.1 - '@rollup/rollup-linux-riscv64-gnu': 4.30.1 - '@rollup/rollup-linux-s390x-gnu': 4.30.1 - '@rollup/rollup-linux-x64-gnu': 4.30.1 - '@rollup/rollup-linux-x64-musl': 4.30.1 - '@rollup/rollup-win32-arm64-msvc': 4.30.1 - '@rollup/rollup-win32-ia32-msvc': 4.30.1 - '@rollup/rollup-win32-x64-msvc': 4.30.1 + "@rollup/rollup-android-arm-eabi": 4.30.1 + "@rollup/rollup-android-arm64": 4.30.1 + "@rollup/rollup-darwin-arm64": 4.30.1 + "@rollup/rollup-darwin-x64": 4.30.1 + "@rollup/rollup-freebsd-arm64": 4.30.1 + "@rollup/rollup-freebsd-x64": 4.30.1 + "@rollup/rollup-linux-arm-gnueabihf": 4.30.1 + "@rollup/rollup-linux-arm-musleabihf": 4.30.1 + "@rollup/rollup-linux-arm64-gnu": 4.30.1 + "@rollup/rollup-linux-arm64-musl": 4.30.1 + "@rollup/rollup-linux-loongarch64-gnu": 4.30.1 + "@rollup/rollup-linux-powerpc64le-gnu": 4.30.1 + "@rollup/rollup-linux-riscv64-gnu": 4.30.1 + "@rollup/rollup-linux-s390x-gnu": 4.30.1 + "@rollup/rollup-linux-x64-gnu": 4.30.1 + "@rollup/rollup-linux-x64-musl": 4.30.1 + "@rollup/rollup-win32-arm64-msvc": 4.30.1 + "@rollup/rollup-win32-ia32-msvc": 4.30.1 + "@rollup/rollup-win32-x64-msvc": 4.30.1 fsevents: 2.3.3 run-async@2.4.1: {} @@ -17170,20 +22555,20 @@ snapshots: shepherd.js@14.3.0: dependencies: - '@floating-ui/dom': 1.6.13 - '@scarf/scarf': 1.4.0 + "@floating-ui/dom": 1.6.13 + "@scarf/scarf": 1.4.0 deepmerge-ts: 7.1.3 shiki@1.26.1: dependencies: - '@shikijs/core': 1.26.1 - '@shikijs/engine-javascript': 1.26.1 - '@shikijs/engine-oniguruma': 1.26.1 - '@shikijs/langs': 1.26.1 - '@shikijs/themes': 1.26.1 - '@shikijs/types': 1.26.1 - '@shikijs/vscode-textmate': 10.0.1 - '@types/hast': 3.0.4 + "@shikijs/core": 1.26.1 + "@shikijs/engine-javascript": 1.26.1 + "@shikijs/engine-oniguruma": 1.26.1 + "@shikijs/langs": 1.26.1 + "@shikijs/themes": 1.26.1 + "@shikijs/types": 1.26.1 + "@shikijs/vscode-textmate": 10.0.1 + "@types/hast": 3.0.4 side-channel-list@1.0.0: dependencies: @@ -17223,7 +22608,7 @@ snapshots: sirv@3.0.0: dependencies: - '@polka/url': 1.0.0-next.28 + "@polka/url": 1.0.0-next.28 mrmime: 2.0.0 totalist: 3.0.1 @@ -17290,17 +22675,17 @@ snapshots: starknet@6.11.0(encoding@0.1.13): dependencies: - '@noble/curves': 1.4.2 - '@noble/hashes': 1.7.0 - '@scure/base': 1.1.9 - '@scure/starknet': 1.0.0 + "@noble/curves": 1.4.2 + "@noble/hashes": 1.7.0 + "@scure/base": 1.1.9 + "@scure/starknet": 1.0.0 abi-wan-kanabi: 2.2.4 fetch-cookie: 3.1.0 get-starknet-core: 4.0.0 isomorphic-fetch: 3.0.0(encoding@0.1.13) lossless-json: 4.0.2 pako: 2.1.0 - starknet-types-07: '@starknet-io/types-js@0.7.10' + starknet-types-07: "@starknet-io/types-js@0.7.10" ts-mixer: 6.0.4 url-join: 4.0.1 transitivePeerDependencies: @@ -17316,7 +22701,7 @@ snapshots: storybook@8.4.7(prettier@3.4.2): dependencies: - '@storybook/core': 8.4.7(prettier@3.4.2) + "@storybook/core": 8.4.7(prettier@3.4.2) optionalDependencies: prettier: 3.4.2 transitivePeerDependencies: @@ -17438,7 +22823,7 @@ snapshots: sucrase@3.35.0: dependencies: - '@jridgewell/gen-mapping': 0.3.8 + "@jridgewell/gen-mapping": 0.3.8 commander: 4.1.1 glob: 10.4.5 lines-and-columns: 1.2.4 @@ -17456,7 +22841,7 @@ snapshots: svgo@3.3.2: dependencies: - '@trysound/sax': 0.2.0 + "@trysound/sax": 0.2.0 commander: 7.2.0 css-select: 5.1.0 css-tree: 2.3.1 @@ -17478,7 +22863,7 @@ snapshots: tailwindcss@3.4.17: dependencies: - '@alloc/quick-lru': 5.2.0 + "@alloc/quick-lru": 5.2.0 arg: 5.0.2 chokidar: 3.6.0 didyoumean: 1.2.2 @@ -17507,7 +22892,7 @@ snapshots: tar@7.4.3: dependencies: - '@isaacs/fs-minipass': 4.0.1 + "@isaacs/fs-minipass": 4.0.1 chownr: 3.0.0 minipass: 7.1.2 minizlib: 3.0.1 @@ -17525,14 +22910,14 @@ snapshots: terser@5.37.0: dependencies: - '@jridgewell/source-map': 0.3.6 + "@jridgewell/source-map": 0.3.6 acorn: 8.14.0 commander: 2.20.3 source-map-support: 0.5.21 test-exclude@7.0.1: dependencies: - '@istanbuljs/schema': 0.1.3 + "@istanbuljs/schema": 0.1.3 glob: 10.4.5 minimatch: 9.0.5 @@ -17546,9 +22931,9 @@ snapshots: three-stdlib@2.35.2(three@0.166.1): dependencies: - '@types/draco3d': 1.4.10 - '@types/offscreencanvas': 2019.7.3 - '@types/webxr': 0.5.20 + "@types/draco3d": 1.4.10 + "@types/offscreencanvas": 2019.7.3 + "@types/webxr": 0.5.20 draco3d: 1.5.7 fflate: 0.6.10 potpack: 1.0.2 @@ -17641,7 +23026,7 @@ snapshots: tsconfig-paths@3.15.0: dependencies: - '@types/json5': 0.0.29 + "@types/json5": 0.0.29 json5: 1.0.2 minimist: 1.2.8 strip-bom: 3.0.0 @@ -17677,7 +23062,7 @@ snapshots: tinyglobby: 0.2.10 tree-kill: 1.2.2 optionalDependencies: - '@swc/core': 1.10.4(@swc/helpers@0.5.15) + "@swc/core": 1.10.4(@swc/helpers@0.5.15) postcss: 8.4.49 typescript: 5.7.2 transitivePeerDependencies: @@ -17699,7 +23084,7 @@ snapshots: twoslash@0.2.12(typescript@5.7.2): dependencies: - '@typescript/vfs': 1.6.0(typescript@5.7.2) + "@typescript/vfs": 1.6.0(typescript@5.7.2) twoslash-protocol: 0.2.12 typescript: 5.7.2 transitivePeerDependencies: @@ -17767,9 +23152,9 @@ snapshots: typescript-eslint@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2): dependencies: - '@typescript-eslint/eslint-plugin': 8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - '@typescript-eslint/parser': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - '@typescript-eslint/utils': 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/eslint-plugin": 8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/parser": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + "@typescript-eslint/utils": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) eslint: 9.17.0(jiti@2.4.2) typescript: 5.7.2 transitivePeerDependencies: @@ -17809,7 +23194,7 @@ snapshots: unified@10.1.2: dependencies: - '@types/unist': 2.0.11 + "@types/unist": 2.0.11 bail: 2.0.2 extend: 3.0.2 is-buffer: 2.0.5 @@ -17819,7 +23204,7 @@ snapshots: unified@11.0.5: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 bail: 2.0.2 devlop: 1.1.0 extend: 3.0.2 @@ -17833,32 +23218,32 @@ snapshots: unist-util-is@6.0.0: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-position-from-estree@2.0.0: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-position@5.0.0: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-stringify-position@3.0.3: dependencies: - '@types/unist': 2.0.11 + "@types/unist": 2.0.11 unist-util-stringify-position@4.0.0: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-visit-parents@6.0.1: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-is: 6.0.0 unist-util-visit@5.0.0: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 @@ -17904,7 +23289,7 @@ snapshots: react: 18.3.1 tslib: 2.8.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 use-sidecar@1.1.3(@types/react@18.3.18)(react@18.3.1): dependencies: @@ -17912,7 +23297,7 @@ snapshots: react: 18.3.1 tslib: 2.8.1 optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 use-sound@4.0.3(react@18.3.1): dependencies: @@ -17945,32 +23330,32 @@ snapshots: vfile-message@3.1.4: dependencies: - '@types/unist': 2.0.11 + "@types/unist": 2.0.11 unist-util-stringify-position: 3.0.3 vfile-message@4.0.2: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-stringify-position: 4.0.0 vfile@5.3.7: dependencies: - '@types/unist': 2.0.11 + "@types/unist": 2.0.11 is-buffer: 2.0.5 unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 vfile@6.0.3: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 vfile-message: 4.0.2 viem@2.22.3(typescript@5.7.2)(zod@3.24.1): dependencies: - '@noble/curves': 1.7.0 - '@noble/hashes': 1.6.1 - '@scure/bip32': 1.6.0 - '@scure/bip39': 1.5.0 + "@noble/curves": 1.7.0 + "@noble/hashes": 1.6.1 + "@scure/bip32": 1.6.0 + "@scure/bip39": 1.5.0 abitype: 1.0.7(typescript@5.7.2)(zod@3.24.1) isows: 1.0.6(ws@8.18.0) ox: 0.6.0(typescript@5.7.2)(zod@3.24.1) @@ -17985,11 +23370,11 @@ snapshots: viem@2.9.20(typescript@5.7.2)(zod@3.24.1): dependencies: - '@adraffy/ens-normalize': 1.10.0 - '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.2 - '@scure/bip32': 1.3.2 - '@scure/bip39': 1.2.1 + "@adraffy/ens-normalize": 1.10.0 + "@noble/curves": 1.2.0 + "@noble/hashes": 1.3.2 + "@scure/bip32": 1.3.2 + "@scure/bip39": 1.2.1 abitype: 1.0.0(typescript@5.7.2)(zod@3.24.1) isows: 1.0.3(ws@8.13.0) ws: 8.13.0 @@ -18008,7 +23393,7 @@ snapshots: picocolors: 1.1.1 vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - - '@types/node' + - "@types/node" - less - lightningcss - sass @@ -18026,7 +23411,7 @@ snapshots: pathe: 1.1.2 vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - - '@types/node' + - "@types/node" - less - lightningcss - sass @@ -18038,7 +23423,7 @@ snapshots: vite-plugin-mkcert@1.17.6(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)): dependencies: - '@octokit/rest': 20.1.1 + "@octokit/rest": 20.1.1 axios: 1.7.9(debug@4.4.0) debug: 4.4.0 picocolors: 1.1.1 @@ -18059,9 +23444,9 @@ snapshots: vite-plugin-svgr@4.3.0(rollup@4.30.1)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)): dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.30.1) - '@svgr/core': 8.1.0(typescript@5.7.2) - '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2)) + "@rollup/pluginutils": 5.1.4(rollup@4.30.1) + "@svgr/core": 8.1.0(typescript@5.7.2) + "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0(typescript@5.7.2)) vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - rollup @@ -18070,21 +23455,21 @@ snapshots: vite-plugin-top-level-await@1.4.4(@swc/helpers@0.5.15)(rollup@4.30.1)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)): dependencies: - '@rollup/plugin-virtual': 3.0.2(rollup@4.30.1) - '@swc/core': 1.10.4(@swc/helpers@0.5.15) + "@rollup/plugin-virtual": 3.0.2(rollup@4.30.1) + "@swc/core": 1.10.4(@swc/helpers@0.5.15) uuid: 10.0.0 vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - - '@swc/helpers' + - "@swc/helpers" - rollup vite-plugin-vercel@9.0.4(encoding@0.1.13)(rollup@4.30.1)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)): dependencies: - '@brillout/libassert': 0.5.8 - '@manypkg/find-root': 2.2.3 - '@vercel/build-utils': 8.8.0 - '@vercel/nft': 0.27.10(encoding@0.1.13)(rollup@4.30.1) - '@vercel/routing-utils': 3.1.0 + "@brillout/libassert": 0.5.8 + "@manypkg/find-root": 2.2.3 + "@vercel/build-utils": 8.8.0 + "@vercel/nft": 0.27.10(encoding@0.1.13)(rollup@4.30.1) + "@vercel/routing-utils": 3.1.0 esbuild: 0.24.2 fast-glob: 3.3.3 magicast: 0.3.5 @@ -18105,17 +23490,17 @@ snapshots: postcss: 8.4.49 rollup: 4.30.1 optionalDependencies: - '@types/node': 20.17.12 + "@types/node": 20.17.12 fsevents: 2.3.3 terser: 5.37.0 vitest@1.6.0(@types/node@20.17.12)(@vitest/ui@2.1.8(vitest@2.1.8))(terser@5.37.0): dependencies: - '@vitest/expect': 1.6.0 - '@vitest/runner': 1.6.0 - '@vitest/snapshot': 1.6.0 - '@vitest/spy': 1.6.0 - '@vitest/utils': 1.6.0 + "@vitest/expect": 1.6.0 + "@vitest/runner": 1.6.0 + "@vitest/snapshot": 1.6.0 + "@vitest/spy": 1.6.0 + "@vitest/utils": 1.6.0 acorn-walk: 8.3.4 chai: 4.5.0 debug: 4.4.0 @@ -18132,8 +23517,8 @@ snapshots: vite-node: 1.6.0(@types/node@20.17.12)(terser@5.37.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 20.17.12 - '@vitest/ui': 2.1.8(vitest@2.1.8) + "@types/node": 20.17.12 + "@vitest/ui": 2.1.8(vitest@2.1.8) transitivePeerDependencies: - less - lightningcss @@ -18146,13 +23531,13 @@ snapshots: vitest@2.1.8(@types/node@20.17.12)(@vitest/ui@2.1.8)(terser@5.37.0): dependencies: - '@vitest/expect': 2.1.8 - '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) - '@vitest/pretty-format': 2.1.8 - '@vitest/runner': 2.1.8 - '@vitest/snapshot': 2.1.8 - '@vitest/spy': 2.1.8 - '@vitest/utils': 2.1.8 + "@vitest/expect": 2.1.8 + "@vitest/mocker": 2.1.8(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) + "@vitest/pretty-format": 2.1.8 + "@vitest/runner": 2.1.8 + "@vitest/snapshot": 2.1.8 + "@vitest/spy": 2.1.8 + "@vitest/utils": 2.1.8 chai: 5.1.2 debug: 4.4.0 expect-type: 1.1.0 @@ -18167,8 +23552,8 @@ snapshots: vite-node: 2.1.8(@types/node@20.17.12)(terser@5.37.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 20.17.12 - '@vitest/ui': 2.1.8(vitest@2.1.8) + "@types/node": 20.17.12 + "@vitest/ui": 2.1.8(vitest@2.1.8) transitivePeerDependencies: - less - lightningcss @@ -18182,26 +23567,26 @@ snapshots: vocs@1.0.0-alpha.62(@types/node@20.17.12)(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.30.1)(terser@5.37.0)(typescript@5.7.2): dependencies: - '@floating-ui/react': 0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@hono/node-server': 1.13.7(hono@3.12.12) - '@mdx-js/react': 3.1.0(@types/react@18.3.18)(react@18.3.1) - '@mdx-js/rollup': 3.1.0(acorn@8.14.0)(rollup@4.30.1) - '@noble/hashes': 1.7.0 - '@radix-ui/colors': 3.0.0 - '@radix-ui/react-accordion': 1.2.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-dialog': 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-icons': 1.3.2(react@18.3.1) - '@radix-ui/react-label': 2.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-navigation-menu': 1.2.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-popover': 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-tabs': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@shikijs/rehype': 1.26.1 - '@shikijs/transformers': 1.26.1 - '@shikijs/twoslash': 1.26.1(typescript@5.7.2) - '@vanilla-extract/css': 1.17.0 - '@vanilla-extract/dynamic': 2.1.2 - '@vanilla-extract/vite-plugin': 3.9.5(@types/node@20.17.12)(terser@5.37.0)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) - '@vitejs/plugin-react': 4.3.1(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) + "@floating-ui/react": 0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@hono/node-server": 1.13.7(hono@3.12.12) + "@mdx-js/react": 3.1.0(@types/react@18.3.18)(react@18.3.1) + "@mdx-js/rollup": 3.1.0(acorn@8.14.0)(rollup@4.30.1) + "@noble/hashes": 1.7.0 + "@radix-ui/colors": 3.0.0 + "@radix-ui/react-accordion": 1.2.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-dialog": 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-icons": 1.3.2(react@18.3.1) + "@radix-ui/react-label": 2.1.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-navigation-menu": 1.2.3(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-popover": 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-tabs": 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@shikijs/rehype": 1.26.1 + "@shikijs/transformers": 1.26.1 + "@shikijs/twoslash": 1.26.1(typescript@5.7.2) + "@vanilla-extract/css": 1.17.0 + "@vanilla-extract/dynamic": 2.1.2 + "@vanilla-extract/vite-plugin": 3.9.5(@types/node@20.17.12)(terser@5.37.0)(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) + "@vitejs/plugin-react": 4.3.1(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0)) autoprefixer: 10.4.20(postcss@8.4.49) cac: 6.7.14 chroma-js: 2.6.0 @@ -18246,9 +23631,9 @@ snapshots: unist-util-visit: 5.0.0 vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0) transitivePeerDependencies: - - '@types/node' - - '@types/react' - - '@types/react-dom' + - "@types/node" + - "@types/react" + - "@types/react-dom" - acorn - babel-plugin-macros - less @@ -18269,8 +23654,8 @@ snapshots: webauthn-p256@0.0.10: dependencies: - '@noble/curves': 1.7.0 - '@noble/hashes': 1.6.1 + "@noble/curves": 1.7.0 + "@noble/hashes": 1.6.1 webidl-conversions@3.0.1: {} @@ -18355,15 +23740,15 @@ snapshots: workbox-build@7.3.0(@types/babel__core@7.20.5): dependencies: - '@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1) - '@babel/core': 7.26.0 - '@babel/preset-env': 7.26.0(@babel/core@7.26.0) - '@babel/runtime': 7.26.0 - '@rollup/plugin-babel': 5.3.1(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@2.79.2) - '@rollup/plugin-node-resolve': 15.3.1(rollup@2.79.2) - '@rollup/plugin-replace': 2.4.2(rollup@2.79.2) - '@rollup/plugin-terser': 0.4.4(rollup@2.79.2) - '@surma/rollup-plugin-off-main-thread': 2.2.3 + "@apideck/better-ajv-errors": 0.3.6(ajv@8.17.1) + "@babel/core": 7.26.0 + "@babel/preset-env": 7.26.0(@babel/core@7.26.0) + "@babel/runtime": 7.26.0 + "@rollup/plugin-babel": 5.3.1(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@2.79.2) + "@rollup/plugin-node-resolve": 15.3.1(rollup@2.79.2) + "@rollup/plugin-replace": 2.4.2(rollup@2.79.2) + "@rollup/plugin-terser": 0.4.4(rollup@2.79.2) + "@surma/rollup-plugin-off-main-thread": 2.2.3 ajv: 8.17.1 common-tags: 1.8.2 fast-json-stable-stringify: 2.1.0 @@ -18393,7 +23778,7 @@ snapshots: workbox-sw: 7.3.0 workbox-window: 7.3.0 transitivePeerDependencies: - - '@types/babel__core' + - "@types/babel__core" - supports-color workbox-cacheable-response@7.3.0: @@ -18454,7 +23839,7 @@ snapshots: workbox-window@7.3.0: dependencies: - '@types/trusted-types': 2.0.7 + "@types/trusted-types": 2.0.7 workbox-core: 7.3.0 wouter@2.12.1(react@18.3.1): @@ -18543,7 +23928,7 @@ snapshots: dependencies: use-sync-external-store: 1.4.0(react@18.3.1) optionalDependencies: - '@types/react': 18.3.18 + "@types/react": 18.3.18 react: 18.3.1 zwitch@2.0.4: {}